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
---------|:----:|:--------------:|:---------:
- | John Doe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
- | Don Joe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
- | Ron John | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
- | John Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
- | Don Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
+Display | Name | Github Profile | Portfolio
+--------|:---------:|:--------------:|:---------:
+ | John Doe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
+ | Don Joe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
+ | Ron John | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
+ | John Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
+ | 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
+
+
+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:
+
+
+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:
+
+
+
+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
+
+
+
+### 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
+
+
+
+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
+
+
+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
+
+
+
+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,
+