diff --git a/.gitignore b/.gitignore index f69985ef1f..3679b6681d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,9 @@ bin/ /text-ui-test/ACTUAL.txt text-ui-test/EXPECTED-UNIX.TXT +PlanNUS.txt +/text-ui-test/DIFF.TXT +DIFF.TXT +PlanNUS.txt + +logs/ diff --git a/AddModuleCommand.log b/AddModuleCommand.log new file mode 100644 index 0000000000..22993ec20e --- /dev/null +++ b/AddModuleCommand.log @@ -0,0 +1,4 @@ +Nov 06, 2020 6:37:14 PM seedu.duke.apps.academicplanner.commands.AddModuleCommand execute +INFO: Executing add command. +Nov 06, 2020 6:37:14 PM seedu.duke.apps.academicplanner.commands.AddModuleCommand validateModuleCode +WARNING: Module entered is duplicated. diff --git a/ModuleLoader.log b/ModuleLoader.log new file mode 100644 index 0000000000..dae549c4dd --- /dev/null +++ b/ModuleLoader.log @@ -0,0 +1,2 @@ +Nov 06, 2020 6:37:48 PM seedu.duke.apps.moduleloader.ModuleLoader +INFO: All Module successfully loaded diff --git a/README.md b/README.md index 698b938529..91a9c1c98f 100644 --- a/README.md +++ b/README.md @@ -1,64 +1,53 @@ -# Duke project template - -This is a project template for a greenfield Java project. It's named after the Java mascot _Duke_. Given below are instructions on how to use it. - -## Setting up in Intellij - -Prerequisites: JDK 11 (use the exact version), update Intellij to the most recent version. - -1. **Configure Intellij for JDK 11**, as described [here](https://se-education.org/guides/tutorials/intellijJdk.html). -1. **Import the project _as a Gradle project_**, as described [here](https://se-education.org/guides/tutorials/intellijImportGradleProject.html). -1. **Verify the set up**: After the importing is complete, locate the `src/main/java/seedu/duke/Duke.java` file, right-click it, and choose `Run Duke.main()`. If the setup is correct, you should see something like the below: - ``` - > Task :compileJava - > Task :processResources NO-SOURCE - > Task :classes - - > Task :Duke.main() - Hello from - ____ _ - | _ \ _ _| | _____ - | | | | | | | |/ / _ \ - | |_| | |_| | < __/ - |____/ \__,_|_|\_\___| - - What is your name? - ``` - Type some word and press enter to let the execution proceed to the end. - -## Build automation using Gradle - -* This project uses Gradle for build automation and dependency management. It includes a basic build script as well (i.e. the `build.gradle` file). -* If you are new to Gradle, refer to the [Gradle Tutorial at se-education.org/guides](https://se-education.org/guides/tutorials/gradle.html). - -## Testing - -### I/O redirection tests - -* To run _I/O redirection_ tests (aka _Text UI tests_), navigate to the `text-ui-test` and run the `runtest(.bat/.sh)` script. - -### JUnit tests - -* A skeleton JUnit test (`src/test/java/seedu/duke/DukeTest.java`) is provided with this project template. -* If you are new to JUnit, refer to the [JUnit Tutorial at se-education.org/guides](https://se-education.org/guides/tutorials/junit.html). - -## Checkstyle - -* A sample CheckStyle rule configuration is provided in this project. -* If you are new to Checkstyle, refer to the [Checkstyle Tutorial at se-education.org/guides](https://se-education.org/guides/tutorials/checkstyle.html). - -## CI using GitHub Actions - -The project uses [GitHub actions](https://github.com/features/actions) for CI. When you push a commit to this repo or PR against it, GitHub actions will run automatically to build and verify the code as updated by the commit/PR. - -## Documentation - -`/docs` folder contains a skeleton version of the project documentation. - -Steps for publishing documentation to the public: -1. If you are using this project template for an individual project, go your fork on GitHub.
- If you are using this project template for a team project, go to the team fork on GitHub. -1. Click on the `settings` tab. -1. Scroll down to the `GitHub Pages` section. -1. Set the `source` as `master branch /docs folder`. -1. Optionally, use the `choose a theme` button to choose a theme for your documentation. +# PlanNUS + +
+ +
+ +#### Foreword + +PlanNUS is a greenfield project which aims to solve the gap in undergraduate academic planning in NUS. +With the Academic Calendar Planner, PlanNUS will be able to assist undergraduate students in forecasting their academic journey for their 4 or 5 years in NUS. +With the CAP Calculator , PlanNUS will be able to tell you your current CAP and forecast future grades needed to achieve your target CAP. + +## Target User Profile + +1. All Fresh NUS Undergraduates +1. NUS Undergraduates who have completed at least 1 semester of study + +## Feature List (for V2.1) + +* Academic Calendar Planner + * Add module + * Edit module + * Remove module + * View module details + * Search for module by keyword + * Print Calendar + * Full Calendar + * Semester Calendar +* CAP Calculator + * Get current CAP + * Get results need for target CAP + * See possible CAP when setting as grade-less +* General + * Saving of Academic Calendar into text file + * Loading of Academic Calendar from text file + +## Features Coming Soon (V3.0 and beyond) + +* Support max limit for the `Set SU` function in `capcalc` +* Support discontinued modules from NUS +* Support shortened commands for parsers +* Support validation of requirements for modules + +## Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) diff --git a/build.gradle b/build.gradle index b0c5528fb5..583e92a835 100644 --- a/build.gradle +++ b/build.gradle @@ -12,6 +12,8 @@ repositories { dependencies { 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' + implementation 'com.google.code.gson:gson:2.8.6' //Google Json serialzation library + implementation 'org.apache.commons:commons-lang3:3.11' //Apache commons lang for Class builder } test { @@ -29,11 +31,11 @@ test { } application { - mainClassName = "seedu.duke.Duke" + mainClassName = "seedu.duke.PlanNus" } shadowJar { - archiveBaseName = "duke" + archiveBaseName = "PlanNus" archiveClassifier = null } @@ -41,6 +43,15 @@ checkstyle { toolVersion = '8.23' } -run{ +run { standardInput = System.in + enableAssertions = true +} + +jar { + manifest { + attributes( + 'Main-Class': 'seedu.duke.PlanNus' + ) + } } diff --git a/docs/AboutUs.md b/docs/AboutUs.md index 0f072953ea..6e15a42cee 100644 --- a/docs/AboutUs.md +++ b/docs/AboutUs.md @@ -1,9 +1,13 @@ # About us -Display | Name | Github Profile | Portfolio ---------|:----:|:--------------:|:---------: -![](https://via.placeholder.com/100.png?text=Photo) | John Doe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | Don Joe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | Ron John | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | John Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | Don Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) +
+ +
+ +Display | Name | Github Profile | Portfolio +---|:---:|:---:|:---: + | Lam Tian Yu Jerrold | [jerroldlam](https://github.com/jerroldlam "Github User Profile") | [Portfolio](team/jerroldlam.md) + | Khenus Tan Jia Liang | [Khenus](https://github.com/Khenus "Github User Profile") | [Portfolio](team/khenus.md) + | Harry Lee Chein Pong | [harryleecp](https://github.com/harryleecp "Github User Profile") | [Portfolio](team/harryleecp.md) + | Ju Zihao | [JuZihao](https://github.com/JuZihao "Github User Profile") | [Portfolio](team/juzihao.md) + | Vanessa Kang Rui | [vanessa-kang](https://github.com/vanessa-kang "Github User Profile") | [Portfolio](team/vanessa-kang.md) \ No newline at end of file diff --git a/docs/ConfigurationGuide.md b/docs/ConfigurationGuide.md new file mode 100644 index 0000000000..66742cdaf4 --- /dev/null +++ b/docs/ConfigurationGuide.md @@ -0,0 +1,26 @@ +# Configuration Guide for PlanNUS + + + +
+ +
+ +## Table of contents + +* Table of contents +{:toc} + +## Configuration Guide + +Certain properties of the application can be controlled (e.g user saved modules file location, logging level) through the configuration file (default: `config.json`). + +## Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) diff --git a/docs/DevOpsGuide.md b/docs/DevOpsGuide.md new file mode 100644 index 0000000000..e86c8b9166 --- /dev/null +++ b/docs/DevOpsGuide.md @@ -0,0 +1,69 @@ +# DevOps Guide for PlanNUS + + + +
+ +
+ +## Table of contents + +* Table of contents +{:toc} + +## Build Automation + +PlanNUS uses `Gradle` for build automation and dependency management. + +Below shows how `Gradle` is being used in PlanNUS for important project tasks + +* **`test`**: Runs all available test + * Command: `./gradlew clean test`: Cleans the project before running the test + * Command: `./gradlew test`: Runs all the test +* **`shadowJar`**: ShadowJar plugin is responsible for packaging PlanNUS into a *fat* JAR file, which is located under `build/lib` folder. If applicable, ShadowJar will replace previous versions of `PlanNUS.jar` with the latest version. + * Command: `./gradlew shadowJar` + +* **`clean`**: Deletes the files created during the previous build (i.e. files and folders that are in the `build` folder) + * Command: `./gradlew clean` +* **`checkstyle`**: Checks for styling compliance across the whole project + * Command: `./gradlew checkstyleMain`: Checks for styling compliance in the `main` package of PlanNUS + * Command: `./gradlew checkstyleTest`: Checks for styling compliance in the `test` package of PlanNUS +* **`build`**: Runs all available `tests` and `checkstyle` before packaging PlanNUS with `ShadowJar` if project passed all test cases and style check without issue. + * Command: `./gradlew build` + +## Continuous Integration (CI) + +PlanNUS uses GitHub Actions for continuous integration. The necessary GitHub Actions configuration files exist as `.github/workflows/gradle.yml`. This file does not require further set up. + +## I/O Testing + +PlanNUS uses automated scripts located in the `./text-ui-test` folder to test for the correct output given a sequence of inputs. + +To test for the input/output of PlanNUS + +1. Change needed input in `input.txt` located in `./text-ui-test` folder +2. Change the expected output in `EXPECTED.TXT` located in `./text-ui-test` folder +3. Run the scripts for testing + * On windows, run `runtest.bat` + * On UNIX systems, run `runtest.sh` +4. The scripts will run and throws a warning message if the actual output differs from the expected output +5. The actual output will be stored in `ACTUAL.TXT` located in `./text-ui-test` folder + +## Making a release + +Here are the steps to create a new release. + +1. Generate a fat JAR file using Gradle with the command`gradlew build`. +2. Tag the repo with the version number. e.g. `V2.0` +3. [Create a new release using GitHub](https://help.github.com/articles/creating-releases/). Upload the JAR file you created. + +## Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) + diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 0ec3db103d..a613507b14 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -1,34 +1,1322 @@ -# Developer Guide +# Developer Guide for PlanNUS -## Design & implementation +
+ +
+Before reading this document, it is recommended to read through the [user guide](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) first. -{Describe the design and implementation of the product. Use UML diagrams and short code snippets where applicable.} +
+## 1. Table of contents -## Product scope -### Target user profile +* Table of contents +{:toc} +
-{Describe the target user profile} +## 2. Setting up PlanNUS -### Value proposition + -{Describe the value proposition: what problem does it solve?} +The following steps assume that you already have a [GitHub](https://github.com) account set up beforehand. Once this has been done, proceed to __fork__ this [repo](https://github.com/AY2021S1-CS2113T-F12-1/tp), and __clone__ the fork into your computer using [Sourcetree](https://sourcetreeapp.com) or any other _Git GUI_. -## User Stories +The _IDE_ to be used should contain the latest version of _Java_ as this is the main programming language for this application. Thus you are highly recommended to use Intellij IDEA. -|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| +The following are remaining steps to be taken to finish the set up: -## Non-Functional Requirements +1. Make sure that the version is configured as __JDK 11__. +2. When prompted, __import__ the project as a __Gradle project__ (could take minutes to complete). +3. Enter commands to ensure that PlanNUS functions as expected. You may refer to the _User Guide_ for valid commands. -{Give non-functional requirements} +[Back to Table of Contents](#1-table-of-contents) -## Glossary +
-* *glossary item* - Definition +## 3. Design -## Instructions for manual testing +### 3.1. Architecture + + + +
+ Architecture diagram of PlanNUS +
+The ***Architecture Diagram*** given above explains the high-level design of PlanNUS. Below is a quick overview of each component. + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 3.2. Overview + +#### 3.2.1. PlanNus + +`PlanNus` class contains the `main` and `run` method, which is responsible for the following: + + * At launch + + * Loading all modules for AY2020/21 into PlanNUS + + * Loading previous save file into PlanNUS if available + + * Unified entry point to available apps in PlanNUS + + * While running + + * Continuously prompt user for app selection + * Save after every change in `AcadPlan` + + * At shut down + + * Saving of user data into save file + * Clean up methods where necessary + +[Back to Table of Contents](#1-table-of-contents) + +
+ +#### 3.2.2. Global, Ui, Parser, Storage, Apps + +* The `global` package contains classes, exceptions and objects that are required across the whole app. +* The `ui` package contains the class which is responsible for sharing one `scanner` class across the whole app to prevent multiple IO streams +* The `parser` package contains the class which handles user's app selection +* The `storage` package handles loading and saving of user's data to a save file. +* Packages for Available apps such as Academic Planner and CAP Calculator are stored within `apps` package + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 3.3. Project Structure + +Each package in PlanNUS as given above follows the following file structure where applicable: + +* A functional class which acts as the entry point to that module +* A parser class which parses user input into executable commands by PlanNUS + +* `commands`: A package that handles all executable commands given by parser +* `commons`: A package with the utilities and shared classes across the parent package +* `exceptions`: A package to handle all exceptions thrown across the parent package + +The interaction within each package should ideally be as shown below. + +
+ Architecture diagram for ideal project structure in PlanNUS +
+*Note that while this is the ideal case, packages such as* `global`, `parser` *and* `ui` *might not strictly follow this structure due to these package serving a different function altogether (Refer to the sections below for more details.)* + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 3.4. Life cycle of PlanNUS + +The [*sequence diagram*](#sequence-diagram) below shows how different packages and classes interact with each other throughout the whole [life cycle](#life-cycle) of PlanNUS. + +
+ Sequence diagram for lifecycle of PlanNUS +
+ + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 3.5. Details + +
+ Details architecture diagram of PlanNUS +
+Note that the above diagram is only intended for showing the connections to PlanNus main class rather than between individual classes. + +[Back to Table of Contents](#1-table-of-contents) + +
+ +#### 3.5.1. Global Component + +Note that the diagram below only shows the connections to `PlanNus` class. It does not show connections between individual classes. + +
+ Storage architecture diagram of PlanNUS +
+ +Classes used by multiple components are part of the `global` component of PlanNUS. This includes classes such as `App`,`Command` and `LoggingTool`. The main object classes `PartialModule`, `FullModule` and `Person` are also within the global component. + +note that the diagram below only shows the connections to plannus main class. It does not show connections between individual classes + +**API** : `src.main.java.seedu.duke.global` + +[Back to Table of Contents](#1-table-of-contents) + +
+ +#### 3.5.2. Storage Component + + + +
+ Storage architecture diagram of PlanNUS +
+ + +The `Storage` component is responsible for the loading and saving of information from text files which can happen in two types of scenarios. The first type would be through the use of commands specified in the diagram which can be found in the _Academic Planner_ app. Alternatively, the user may also exit from the program using the commands within the application itself. This is to prevent loss of data when the user terminates the program by closing the command prompt or using the _ctrl-c_ command. + +**API** : `src.main.java.seedu.duke.storage` + +[Back to Table of Contents](#1-table-of-contents) + +
+ +#### 3.5.3. Parser Component + + + +
+ Parser diagram for Ui +
+ +For the architecture of PlanNUS, the `Parser` classes will belong under the application they will be parsing for. The role +of these parsers is to process the user's input and return the appropriate command with required parameters to initialise the command. The newly created objects will then be returned to the main command to be executed and thereafter, terminated. + +**API** : `src.main.java.seedu.duke.parser.AppParser`, `src.main.java.seedu.duke.apps.academicplanner.AcademicPlannerParser`, `src.main.java.seedu.duke.apps.capcalculator.CapCalculatorParser` and `src.main.java.seedu.duke.apps.capcalculator.SetSuParser` + +[Back to Table of Contents](#1-table-of-contents) + +
+ +#### 3.5.4. Ui Component + + + +
+ Architecture diagram for Ui +
+ +Note: XYZ stand for any class. For example, `XYZParser` refers to `AppParser`,`AcademicPlannerParser` etc. + +In PlanNUS, the `Ui` component is integral in initialising a `Scanner` class and passing it to methods where they require them. `Ui` also provides functions to output formatted lines to console to improve readability for the user. + +**API** : `src.main.java.seedu.duke.ui.Ui` + +[Back to Table of Contents](#1-table-of-contents) + +
+ +## 4. Implementation + +### 4.1. Academic Calendar Planner: Add Module feature + +#### 4.1.1. Current implementation + +Add module command is executed by `AcademicPlannerParser`. It allows users to add modules into their Academic Planner by instantiating a new `PartialModule` object and adding it into the `userModuleList` and `userModuleMap`. Both the list and hashmap are the _java API_, which are used by importing them. The `Person` object is used to encapsulate both `userModuleList` and `userModuleMap`. + +Additionally, the add module command extends the `Command` class and overrides its `execute()` command. An external class, `ModuleValidator` is called upon to validate the various parameters that the user has entered, as to only allow valid modules to be added to the user. + +Given below is an example usage scenario and how add module command behaves at each step. + +
+ Initial state diagram for AddModuleCommand +
+ +__Step 1__ : The user calls the add module command from the `AcademicPlannerParser`, which will initialise a +`AddModuleCommand`. `AddModuleCommand`'s constructor takes in parameters of `ModuleLoader`, `Person`,`Ui`, +and `String`. Below is a table of what each parameter corresponds to in the state diagram of the program. + +|Parameter
(Class Name)|Corresponds to
(Function of Class)|Referred to as
(Variable Name)| +|:---:|:---:|:---:| +|`ModuleLoader`| Class representing all modules offered by NUS | `allModules` | +|`Person`| Class representing current user's information | `currentPerson`| +|`Ui`| Class encapsulating java's default scanner class | `in`| +|`String` | Class representing the module code to be added | `moduleCode`| + +
+ State diagram for AddModuleCommand Step 2 +
+ +__Step 2__ : `execute()` is called from the instance of `AddModuleCommand`. It can throw `AcademicException` +or `IOException`. `FileHandler` and `Logger` classes from the _java API_ are instantiated to handle logging for the remainder of the `execute()` method. + +__Step 3__ : `in` then reads in the next line of input, which is the user's input for the desired semester for the `moduleCode`. This is then validated against `allModules`, while accounting for `isRetake` variable. `isRetake` is a flag variable which indicates that +the module newly entered by the user is a module that is going to be retaken. + +__Step 4__ : The next line of input is read from `in`, which is the user's input for grade value, which is also validated by `ModuleValidator`. + +__Step 5__ : `AddUtils` is called upon to return module credit for `moduleCode` by `getModuleCreditForModule()`. + +
+ State diagram for AddModuleCommand Step 6 +
+ +__Step 6__ : `AddUtils` is called upon again to add the module's data to the user, by instantiating a new +`PartialModule` and storing it in both `userModuleList` and `userModuleMap` via `Person`. + +
+ Final state diagram for AddModuleCommand +
+ +__Step 7__ : `FileHandler`, `Logger`, `ModuleValidator`, `AddUtils` and `AddModuleCommand` are terminated. `PartialModule` is not terminated as it is now referenced by `userModuleList` and `userModuleMap` in `Person`. + +The following sequence diagram shows how the `AddModuleCommand` works: + +
+ Sequence diagram for AddModuleCommand +
+ +The following activity diagram summarizes what happens when the user executes a `AddModuleCommand` : + +
+ Activity diagram for AddModuleCommand +
+ +#### 4.1.2. Design considerations + +The following options were considered when implementing commands: + +* Option 1 (Current Implementation): Implementing each command as a class by itself + * Pros: Increases modularity of code, higher overall code quality + * Cons: More complicated to implement +* Option 2: Implementing each command as a method in a class + * Pros: Easier to implement + * Cons: Class needs to be instantiated and increases coupling, reducing testability. This method also decreases SLAP. + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 4.2. Academic Calendar Planner: Edit Module Feature + + + +#### 4.2.1. Current implementation + +Similar to the add module command, the edit module command is also executed by `AcademicPlannerParser`. It allows the user to edit the existing modules added to their `Academic Planner` by accessing the specified `PartialModule` object within the `userModuleList`and `userModuleMap`. + +Given below is an example usage scenario and how edit module command behaves at each step. + +
+ Initial state diagram for Edit Module Command +
+__Step 1:__ The user calls the edit module command from the `AcademicPlannerParser` and then `EditModuleCommand` will be initialized where its constructor would take in the same parameters as that of `AddModuleCommand`. + +__Step 2:__ The `execute()` method is called from the instance of `EditModuleCommand` which only throws `AcademicException` if applicable. + +__Step 3:__ Method `isModTakenByUser()` of the `ModuleValidator` is called to check if the `moduleCode` entered by the user exists within the `userModuleList` and `userModuleMap`. + +__Step 4:__ If there are multiple occurrences of the specified `moduleCode` which are retaken, the user will be prompted to select the desired index of the module to be modified. + +__Step 5:__ `in` reads the next line of input for user's choice of modifying either the semester or grade of the selected `moduleCode`. + +__Step 6:__ `isValidSemester()` or `isValidGrade()` is called to validate the semester or grade entered by the user. + +__Step 7:__ `updateModuleSemester()` or `updateModuleGrade()` is then called to conduct necessary changes to the information by accessing the module from `userModuleMap` and `userModuleList`. + +
+ Final state diagram for Edit Module Command +
+__Step 8:__ `EditModuleCommand`, `EditUtils` and `ModuleValidator` are terminated. + +The following sequence diagram shows how `EditModuleCommand` works. + +
+ Sequence diagram for Edit Module Command +
+ +The following diagram summarizes what happens when the user executes a `EditModuleCommand`: + +
+ Activity diagram for Edit Module Command +
+ + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 4.3. Academic Calendar Planner: Remove Module Feature + +#### 4.3.1. Current implementation + +The remove module command is executed by `AcademicPlannerParser` just like the commands for add and edit. This feature allows the user to delete any existing modules added to their Academic Planner. by first accessing the specified `PartialModule` object within the `userModuleList`and `userModuleMap`. + +Given below is an example usage scenario and how remove module command behaves at each step. + +
+ Initial state diagram for Remove Module Command +
+ + +__Step 1:__ The user calls the remove module command from the `AcademicPlannerParser` and then `RemoveModuleCommand` will be initialized where its constructor would take in the same parameters as that of `AddModuleCommand` and `EditModuleCommand`. + +__Step 2:__ The `execute()` method is called from the instance of `RemoveModuleCommand` which only throws `AcademicException` if applicable. + +__Step 3:__ Method `isModTakenByUser()` of the `ModuleValidator` is called to check if the `moduleCode` entered by the user exists within the `userModuleList` and `userModuleMap`. + +__Step 4:__ `removeModuleFromUserModuleList()` of `removeUtils` is then called to delete the specified `moduleCode`. + +__Step 5:__ The`depopulate()` method deletes the module object by accessing it from `userModuleMap` and `userModuleList` before updating the both the hashmap and the array list. + +
+ Final state diagram for Remove Module Command +
+ + +__Step 6:__ `RemoveModuleCommand`, `RemoveUtils` and `ModuleValidator` are terminated. + +The following sequence diagram shows how `RemoveModuleCommand` works. + +
+ Sequence diagram for Remove Module Command +
+ + +The following diagram summarizes what happens when the user executes a `RemoveModuleCommand`: + +
+ Activity diagram for Remove Module Command +
+ + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 4.4. Academic Calendar Planner: View Module Details Feature + + + +#### 4.4.1. Current implementation + +View module details command is executed by `AcademicPlannerParser`. It allows the user to view the full details of any module offered by NUS, by accessing the specified `FullModule` object that corresponds to the module code entered by the user, and printing its attributes. + +Additionally, the view module details command extends the `Command` class and overrides its `execute()` command. An external class, `ModuleValidator` is called upon to validate the module code that the user has entered, as only the details of valid NUS modules can be displayed. + +Given below is an example usage scenario and how view module command behaves at each step. + +
+ Initial state diagram for Module Details Command +
+ +__Step 1:__ The user calls the view module details command from the `AcademicPlannerParser`, which will initialise a `ModuleDetailsCommand`. `ModuleDetailsCommand`'s constructor takes in parameters of `ModuleLoader` and `String`. Below is a table of what each parameter corresponds to in the state diagram of the program. + +| Parameter
(Class Name) | Corresponds to
(Function of Class) | Referred to as
(Variable Name) | +| :-------------------------: | :----------------------------------------------------: | :---------------------------------: | +| `ModuleLoader` | Class representing all modules offered by NUS | `allModules` | +| `String` | Class representing the module code to print details of | `moduleCode` | + +__Step 2:__ `execute()` is called from the instance of `ModuleDetailsCommand`. It can throw `AcademicException`. + +__Step 3:__ `validateModuleCode()` is called to validate the user input, `moduleCode`, against `allModules`. + +__Step 4:__ `PrintUtils` is called to print the details of the module. + +
+ Final state diagram for Module Details Command +
+ + + +__Step 5:__ `ModuleDetailsCommand`, `ModuleLoader` and `PrintUtils` are terminated. + + + +The following sequence diagram shows how `ModuleDetailsCommand` works. + +
+ +
+ + +The following diagram summarizes what happens when the user executes a `ModuleDetailsCommand`: + +
+ Activity diagram for View Module Details Command +
+ + +[Back to Table of Contents](#1-table-of-contents) + +
+ + +### 4.5. CAP Calculator feature : Show current results feature + +#### 4.5.1. Current implementation + +`CurrentCommand` is executed by `CapCalculatorApp`. It displays user's current CAP, graded MCs and total MCs. These parameters depend on the modules added in `AcademicPlannerApp` and is retrieved from the `Person` object. These data are obtained by calling the methods `getCurrentTotalMcxGrade()`, `getCurrentMcAfterSU()` and `getCurrentMc()`. + +Given below is an example usage scenario and how edit module command behaves at each step. + +__Step 1:__ The user calls the `CurrentCommand` from the `CapCalculatorParser` and the parameter `currentPerson` will be parsed into `CurrentCommand` and a new instance of `CurrentCommand` is created. + +__Step 2:__ The `execute()` method is called from the instance of `CurrentCommand`. + +__Step 3:__ The `getCurrentCap()` method is then called to get the current CAP of user. + +__Step 4:__ The methods `displayCurrentCap()`, `displayCurrentMcAfterSU()` and `displayCurrentMc()` is then called to display the corresponding results to user. + +__Step 5:__ `CurrentCommmand` is then terminated. + +The following sequence diagram shows how `CurrentCommand` works. + +
+ +
+ + +[Back to Table of Contents](#1-table-of-contents) + + +### 4.6. CAP Calculator feature : Set S/U by semester feature + +#### 4.6.1. Current implementation + +`SetSuBySemesterCommand` is executed by `CapCalculatorApp`. It provides users with a suggestion on how they can S/U their modules added in `AcademicPlannerApp` by retrieving the `userModuleList` from the `Person` object and filter the list according to the semester provided to get a `suList`. + +`suList` will then be analysed to provide user with a list of suggested S/U modules to achieve the best CAP. + + Given below is an example usage scenario and how `SetSuBySemesterCommand` behaves at each step. + +
+ +
+ +__Step 1:__ The user calls the set S/U command from the `CapCalculatorParser` and the parameters `choice`, `currentPerson` and `ui` will be parsed into `SetSuParser`. + +__Step 2:__ Depending on the parameter `choice`, `SetSuParser` decides either `SetSuBySemesterCommand` or `SetSuByModulesCommand` to be parsed into `CapCalculatorApp`. Taking that the user decides to parse the `SetSuBySemesterCommand` by entering _1_. + +__Step 3:__ The `execute()` method is called from the instance of `SetSuBySemesterCommand` which only throws `CapCalculatorException` if applicable. + +__Step 4:__ `SetSuUtils` is created and the method `promptUserForSemester()` of `SetSuUtils` is called to read the next line of input for user's choice of a semester to S/U. + +__Step 5:__ The method `getSuListBySemester()` of `SetSuUtils` is then called to get a list of valid modules that the user can S/U. + +
+ +
+ +__Step 6:__ The method `showResultsToUser()` of `SetSuUtils` is then called to display the suggestions to user. + +__Step 7:__ `SetSuBySemesterCommmand` and `SetSuUltils` are terminated. + +
+ +
+ +The following sequence diagram shows how `SetSuBySemesterCommand` works. + +
+ +
+ +The following diagram summarizes what happens when the user executes a `SetSuBySemesterCommand`: + +
+ +
+ + +[Back to Table of Contents](#1-table-of-contents) + +
+ + + +## 5. Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) + +[Back to Table of Contents](#1-table-of-contents) + +
+ +## 6. Appendix: Requirements + +### 6.1. Product scope + +__Target user profile:__ + +* has adequate level of familiarization with CLI applications +* requires a clear outlook of academic journey with the modules offered by NUS +* wants to keep track of his or her results and set target grades for the upcoming semester(s) +* prefers using desktop or laptop instead of other electronic devices + +__Value proposition:__ +Provides NUS undergraduates with a platform to keep track of their academic progress and explore other possibilities with the plethora of modules available. In addition, provides NUS undergraduates with an avenue to have an automatic calculation +of their scores and receive information regarding the use of their Satisfactory / Unsatisfactory options. + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 6.2. User stories + +| Version | As a ... | I want to ... | So that I can ... | +| :-----: | --------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| v1.0 | fresh undergraduate | visualize the modules in the recommended schedule and course requirements | better plan out my academic journey for the next 4-5 years in NUS | +| v1.0 | undergraduate with at least 1 semester of study completed | calculate my CAP easily | forecast my own expected graduation CAP and if they match my expected CAP | +| v1.0 | undergraduate with at least 1 semester of study completed | print out a personalized list of modules taken so far and grades obtained | track my academic progression in NUS | +| v2.0 | user of PlanNUS | find modules I have completed in a particular semester | view specific information I require about that semester without redundant information | +| V2.0 | user of PlanNUS | easily access my last made list | save time on retyping my academic calendar after each use | +| V2.0 | user of PlanNUS | view module details | make an informed decision on which modules to take up during the semester | +| V2.0 | user of PlanNUS | search modules by their partial keys | view more modules with similar subject codes | +| V2.0 | undergraduate with at least 1 semester of study completed | have suggestions on which modules to mark as S/U | make an informed decision on which modules to S/U | + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 6.3. Use cases + + + +
+ +__Use case 1: Add a module to academic calendar__ + +**Preconditions: User is in the Academic Planner app.** + +__MSS__ + +1. User chooses to add a module to their academic calendar. + +2. PlanNUS prompts user to enter semeseter that they plan to take the module. + +3. User enters semester that they plan to take the module. + +4. PlanNUS prompts user to enter grade received for the module. + +5. User enters grade received for the module. + +6. PlanNUS adds the module to the user's academic calendar, and displays a confirmation message + + Use case ends. + +__Extensions__ + +- 1a. User did not specify a module code while adding a module. + + - 1a1. PlanNUS shows a _missing parameter_ error message. + + + Use case ends. + +- 1b. User enters a module code that is not offered by NUS. + + - 1b1. PlanNUS shows an _invalid module code_ error message. + + + Use case ends. + +- 3a. User enters an invalid semester. + + - 3a1. PlanNUS shows an _invalid semester_ error message. + + Use case ends. + +- 5a. User enters an invalid grade. + + - 5a1. PlanNUS shows an _invalid grade_ error message. + + Use case ends. + +
+ +**Use case 2: Edit a module in academic calendar** + +**Preconditions: User is in the Academic Planner app.** + +__MSS__ + +1. User chooses to edit a module currently in their academic calendar. + +2. PlanNUS prompts user to indicate the feature (semester/grade) that they would like to edit. + +3. User chooses feature to edit. + +4. PlanNUS prompts user to enter updated value for chosen feature. + +5. User enters updated value. + +6. PlanNUS edits the value accordingly, stores the updated value in the user's academic calendar, and displays a confirmation message. + +Use case ends. + +__Extensions__ + +- 1a. User did not specify a module code while editing a module. + + - 1a1. PlanNUS shows a _missing parameter_ error message. + + + Use case ends. + +- 1b. User enters a module code that is not offered by NUS. + + - 1b1. PlanNUS shows an _invalid module code_ error message. + + Use case ends. + +- 1c. User enters a module code that is offered by NUS, but is not currently in the user's academic calendar. + + - 1c1. PlanNUS shows a _module not in calendar_ error message. + + Use case ends. + +- 3a. User chooses a feature that is invalid. + + - 3a1. PlanNUS shows an _invalid feature_ error message. + + Use case ends. + +- 5a. User enters an updated value that is invalid. + + - 5a1. PlanNUS shows an _invalid value_ error message. + + Use case ends. + +
+ +**Use case 3: Remove a module from academic calendar** + +**Preconditions: User is in the Academic Planner app.** + +__MSS__ + +1. User chooses to remove a module currently in his or her academic calendar. + +2. PlanNUS removes the corresponding module from the user's academic calendar, and displays a confirmation message. + + Use case ends. + +__Extensions__ + +- 1a. User did not specify a module code while removing a module. + - 1a1. PlanNUS shows a _missing parameter_ error message. + + + Use case ends. + +- 1b. User enters a module code that is not offered by NUS. + + - 1b1. PlanNUS shows an _invalid module code_ error message. + + Use case ends. + +- 1c. User enters a module code that is offered by NUS, but is not currently in the user's academic calendar. + + - 1c1. PlanNUS shows a _module not in calendar_ error message. + + Use case ends. + +
+ +**Use case 4: View details of a module** + +**Preconditions: User is in the Academic Planner app.** + +__MSS__ + +1. User chooses to view details of a module. + +2. PlanNUS prints the details of the corresponding module. + + Use case ends. + +__Extensions__ + +- 1a. User did not specify a module code while viewing details of a module. + - 1a1. PlanNUS shows a _missing parameter_ error message. + + Use case ends. + +- 1b. User enters a module code that is not offered by NUS. + - 1b1. PlanNUS shows an _invalid module code_ error message. + + Use case ends. + +
+ +**Use case 5: Search for a module** + +**Preconditions: User is in the Academic Planner app.** + +__MSS__ + +1. User searches for a module, based on the module code. + +2. PlanNUS displays the search results, up to and including the first 10 results. + + Use case ends. + +__Extensions__ + +- 1a. User did not specify a module code while searching for a module. + - 1a1. PlanNUS shows a _missing parameter_ error message. + + Use case ends. + +
+ +**Use case 6: View academic calendar** + +**Preconditions: User is in the Academic Planner app.** + +__MSS__ + +1. User chooses to view his or her current academic calendar. + +2. PlanNUS prompts user to indicate his or her desired viewing timeframe, i.e. + + a) the full academic calendar, or + + b) view a particular semester only. + +3. User specifies their desired timeframe. + +4. PlanNUS displays the academic calendar accordingly. + + Use case ends. + +__Extensions__ + +- 1a. User's academic calendar is currently empty. + + - 1a1. PlanNUS shows an _empty calendar_ error message. + + Use case ends. +- 3a. User did not specify a valid timeframe. + + - 3a1. PlanNUS shows an _invalid timeframe_ error message. + + Use case ends. +- 3b. User specifies a valid semester, but there are no modules added to that semester yet. + + - 3b1. PlanNUS shows an _empty semester_ error message. + + Use case ends. + +
+ +**Use case 7: View list of available commands** + +**Preconditions: User is in the Academic Planner app or CAP Calculator app.** + +__MSS__ + +1. User chooses to view the list of available commands in the Academic Planner app. + +2. PlanNUS displays the list of available commands. + +
+ +**Use case 8: Exit back to PlanNUS** + +**Preconditions: User is in the Academic Planner app or CAP Calculator app.** + +__MSS__ + +1. User chooses to exit from the Academic Planner app back to the PlanNUS main menu. + +2. PlanNUS exits back to the PlanNUS main menu. + +
+ + +**Use case 9: View current results in CAP Calculator** + +**Preconditions: User is in the CAP Calculator app.** + +__MSS__ + +1. User chooses to view his or her current results. + +2. PlanNUS displays user's current results. + +Use case ends. + +
+ +**Use case 10: Set target CAP in CAP Calculator** + +**Preconditions: User is in the CAP Calculator app.** + +__MSS__ + +1. User chooses to set a target in CAP Calculator. + +2. PlanNUS prompts user for a target CAP. + +3. User enters a target CAP. + +4. PlanNus prompts user for number of graded MCs to achieve that target CAP. + +5. User enters a target graded MCs. + +6. PlanNus displays user with the results needed to achieve the target CAP. + +Use case ends. + +__Extensions__ + +- 3a. User did not enter a valid target CAP. + - 3a1. PlanNUS shows an _invalid CAP_ error message. + + Use case ends. + +- 5a. User provides a valid target CAP, but the target MCs is not valid. + - 5a1. PlanNUS shows an _invalid MCs_ error message. + + Use case ends. + +
+ +**Use case 11a: Set S/U by semester in CAP Calculator** + +**Preconditions: User is in the CAP Calculator app.** + +__MSS__ + +1. User chooses to set S/U in CAP Calculator. + +2. PlanNUS prompts user for his or her desired set S/U method. + + a) Set S/U by semester, or + + b) Set S/U by modules + +3. User enters to set S/U by semester. + +4. PlanNus prompts user for the semester that he or she wishes to S/U. + +5. PlanNus displays user with the the best CAP possible and the modules. + +Use case ends. + +__Extensions__ + +- 3a. User did not enter a valid semester. + + - 3a1. PlanNUS shows an _invalid semester_ error message. + + Use case ends. + +
+ +**Use case 11b: Set S/U by modules in CAP Calculator** + +**Preconditions: User is in the CAP Calculator app.** + +__MSS__ + +1. User chooses to set S/U in CAP Calculator. + +2. PlanNUS prompts user for his or her desired set S/U method. + + a) Set S/U by semester, or + + b) Set S/U by modules + +3. User enters to set S/U by modules. + +4. PlanNus prompts user for number of modules that he or she wishes to S/U. + +5. PlanNus prompts user for the module codes that he or she wishes to S/U. + +6. User enters to the module codes. + +7. PlanNus displays user with the the best CAP possible and the modules. + +Use case ends. + +__Extensions__ + +- 3a. User did not enter an integer. + + - 3a1. PlanNUS shows an _invalid number_ error message. + +- 3b. User enters a number that is too large. + + - 3b1. PlanNUS shows a _number out of bound_ error message. + + Use case ends. + +- 5a. User did not enter a valid module code. + + - 5a1. PlanNUS shows an _invalid module_ error message. + +- 5b. User enters a duplicated module code. + + - 5b1. PlanNUS shows a _duplicate module_ error message. + + Use case ends. + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 6.4. Non-Functional Requirements + + + +* General + * Should work on any [mainstream OS](#mainstream-os) as long as it has Java `11` or above installed. + * Commands entered should be short and intuitive to reduce mistyping of commands + * Program should be compatible on a wide range of devices +* Academic Planner + * Viewing of Academic Calendar should be intuitive as a complicated or messy output compromises usability of PlanNUS + * Only verified modules offered by NUS should be able to be added to prevent confusion + * The navigation between applications should be intuitive +* CAP Calculator + * Data should be shared between applications in order to reduce redundant typing from the user + +[Back to Table of Contents](#1-table-of-contents) + +
+ +### 6.5. Glossary + + + +#### Mainstream OS +Windows, Linux, Unix, OS-X + +#### Life cycle +The duration in which the object is running and alive. + +#### Sequence Diagram +A UML diagram that captures the interactions between multiple objects for a given scenario. + +[Back to Table of Contents](#1-table-of-contents) + +
+ + + +## 7. Features Coming Soon (V3.0 and beyond) + +* Support max limit for the `Set SU` function in `capcalc` +* Support discontinued modules from NUS +* Support shortened commands for parsers +* Support validation of requirements for modules + +[Back to Table of Contents](#1-table-of-contents) + +
+ +## 8. Appendix: Instructions for manual testing + + + +
+ +Given below are instructions to test the app manually. + +ℹ️ **Note:** These instructions only provide a starting point for testers to work on; testers are expected to do more *exploratory* testing. + +
+ +**Launch and shutdown** + +1. Initial launch + + 1. Download the jar file and copy it into an empty folder. + + 2. Open a command prompt and navigate to the folder. + + 3. Enter `java -jar PlanNus.jar` and press enter to launch the app. + + Expected: The PlanNUS main menu is displayed, and the save file is loaded. If a save file does not exist, a new one is created. + +2. Shutdown + 1. Test case: `exit` + + Expected: PlanNUS saves data from the current session, prints a goodbye message, and exits the software entirely. + +
+ +**Entering and exiting apps** + +1. Entering apps from the main menu + + 1. Test case - entering the _Academic Planner_ app. + + Input: `acadplan` or `a` + + Expected: PlanNUS enters the _Academic Planner_ app. + + 2. Test case - entering the _CAP Calculator_ app. + + Input: `capcalc` or `c` + + Expected: PlanNUS enters the _CAP Calculator_ app. + +2. Switching between apps + + 1. Test case - switching to the _CAP Calculator_ app while in the _Academic Planner_ app. + + Input: `capcalc` + + Expected: PlanNUS enters the _CAP Calculator_ app. + + 2. Test case - Switching to the _Academic Planner_ app while in the _CAP Calculator_ app. + + Input: `acadplan` + + Expected: PlanNUS enters the _Academic Planner_ app. + +3. Exiting to the main menu from within an app. + + 1. Test case - exiting to the main menu. + + Input: `exit` + + Expected: PlanNUS exits to the main menu. + +
+ +**Adding a module to the academic calendar** + +1. Prerequisites: User is currently in the _Academic Planner_ app. + +2. Test case - all inputs are valid. + + Input: `add cs2113t` + + Expected: PlanNUS prompts user to enter semester that they plan to take the module. + + Input: `1` + + Expected: PlanNUS prompts user to enter grade received for the module. + + Input: `NT` + + Expected: PlanNUS adds the module, with the associated semester and grade information, to the user's academic calendar. Prints a _module added_ confirmation message. + +3. Test case - invalid module code. + + Input: `add cs1111` + + Expected: PlanNUS shows a _module not offered by NUS_ error message, and exits back to the _Academic Planner_ app. + +4. Other incorrect inputs to try: no module code, invalid semester indexes, invalid grades. + + Expected: PlanNUS shows an error message, and exits back to the _Academic Planner_ app. No module is added to the user's academic calendar. + +
+ +**Editing a module currently in the academic calendar** + +1. Prerequisites: User is currently in the _Academic Planner_ app, and the module being edited is currently in their academic calendar. + +2. Test case - all inputs are valid. Feature being edited is semester. + + Input: `edit cs2113t` + + Expected: PlanNUS prompts user to enter number corresponding to feature to be edited. + + (1 - semester, 2 - grade). + + Input: `1` + + Expected: PlanNUS prompts user to enter new semester value. + + Input: `3` + + Expected: PlanNUS edits semester accordingly, and prints a _update successful_ confirmation message. + +3. Test case - all inputs are valid. Feature being edited is grade. + + Input: `edit cs2113t` + + Expected: PlanNUS prompts user to enter number corresponding to feature to be edited. + + (1 - semester, 2 - grade). + + Input: `2` + + Expected: PlanNUS prompts user to enter new grade. + + Input: `A+` + + Expected: PlanNUS edits grade accordingly, and prints a _update successful_ confirmation message. + +4. Other incorrect inputs to try: no module code, invalid module codes, valid module codes that are not in the user's academic calendar, invalid features, invalid semester indexes, invalid grades. + + Expected: PlanNUS shows an error message, and exits back to the _Academic Planner_ app. No module features are edited. + +
+ +**Removing a module from the academic calendar** + +1. Prerequisites: User is currently in the _Academic Planner_ app, and the module being removed is currently in their academic calendar. + +2. Test case - all inputs are valid. + + Input: `remove cs2113t` + + Expected: PlanNUS removes module from user's academic calendar, and prints a _remove successful_ confirmation message. + +3. Other incorrect inputs to try: no module code, invalid module codes, valid module codes that are not in the user's academic calendar. + + Expected: PlanNUS shows an error message, and exits back to the _Academic Planner_ app. No module is removed from the user's academic calendar. + +
+ +**Viewing the details of a module** + +1. Prerequisites: User is currently in the _Academic Planner_ app. + +2. Test case - all inputs are valid. + + Input: `details cs2101` + + Expected: PlanNUS prints the details of the corresponding module. + +3. Other incorrect inputs to try: no module code, invalid module codes. + + Expected: PlanNUS shows an error message, and exits back to the _Academic Planner_ app. No module details are printed. + +
+ +**Searching for modules that contain a keyword** + +1. Prerequisites: User is currently in the _Academic Planner_ app. + +2. Test case - all inputs are valid. + + Input: `search cs21` + + Expected: PlanNUS prints the modules that contain the keyword, up to the first 10 results. + +3. Other incorrect inputs to try: no search key. + + Expected: PlanNUS shows an error message, and exits back to the _Academic Planner_ app. No search results are printed. + +
+ +**Viewing the academic calendar** + +1. Prerequisites: User is currently in the _Academic Planner_ app, and their academic calendar is currently not empty. + +2. Test case - all inputs are valid. + + Input: `view` + + Expected: PlanNUS prompts user to choose a viewing timeframe. + + (`full` - full academic calendar, `1-10` - specific semester) + + Input: `full` + + Expected: PlanNUS prints the user's full academic calendar. + +3. Other incorrect inputs to try: `view` when the academic calendar is empty, invalid viewing timeframe chosen. + + Expected: PlanNUS shows an error message, and exits back to the _Academic Planner_ app. No academic planner is printed. + +
+ +**Viewing current CAP** + +1. Prerequisites: User is currently in the _CAP Calculator_ app. + +2. Test case - all inputs are valid. + + Input: `current` + + Expected: PlanNUS prints the user's current CAP, total graded MCs and total MCs taken. + +
+ +**Setting a target CAP** + +1. Prerequisites: User is currently in the _CAP Calculator_ app. + +2. Test case - all inputs are valid. + + Input: `set target` + + Expected: PlanNUS prompts user to enter their target CAP. + + Input: `4.3` + + Expected: PlanNUS prompts user to enter the number of graded MCs they are taking to achieve the target cap. + + Input: `50` + + Expected: PlanNUS prints the minimum CAP required in order to achieve the target CAP. + +3. Other incorrect inputs to try: target CAP not within `0.00-5.00` inclusive, number of graded MCs not within `1-180` inclusive. + + Expected: PlanNUS shows an error message, and exits back to the _CAP Calculator_ app. No CAP advice is printed. + +
+ +**Setting SU** + +1. Prerequisites: User is currently in the _CAP Calculator_ app, and their academic calendar is currently not empty. + +2. Test case - all inputs are valid. Set S/U by semester. + + Input: `set su` + + Expected: PlanNUS prompts user to enter number corresponding to S/U method + + (1 - semester, 2 - modules) + + Input: `1` + + Expected: PlanNUS prompts user to enter semester that they wish to S/U. + + Input: `1` + + Expected: PlanNUS prints the current S/U list, possible S/U scenarios, and S/U advice. + +3. Test case - all inputs are valid. Set S/U by modules. + + Input: `set su` + + Expected: PlanNUS prompts user to enter number corresponding to S/U method + + (1 - semester, 2 - modules) + + Input: `2` + + Expected: PlanNUS prompts user to enter the number of modules that they wish to S/U. + + Input: `2` + + Expected: PlanNUS prompts user to enter the modules that they wish to S/U. + + Input: `CS1231`, then `CS1010` + + Expected: PlanNUS prints the current S/U list, possible S/U scenarios, and S/U advice. + +4. Other incorrect inputs to try: invalid S/U methods, invalid semester indexes, invalid number of modules (greater than the number of modules that have been taken), invalid module codes, valid module codes that are not in the user's academic calendar. + + Expected: PlanNUS shows an error message, and exits back to the _CAP Calculator_ app. No S/U advice is printed. + +
+ +**Printing list of available commands** + +1. Prerequisites: User is currently in the _Academic Planner_ or _CAP Calculator_ app. + +2. Test case - all inputs are valid. + + Input: `help` + + Expected: PlanNUS prints a list of available commands in the app that the user is currently in. + +
+ +[Back to Table of Contents](#1-table-of-contents) + +#### *End of Developer Guide* -{Give instructions on how to do a manual product testing e.g., how to load sample data to be used for testing} diff --git a/docs/DocumentationGuide.md b/docs/DocumentationGuide.md new file mode 100644 index 0000000000..266b19fcec --- /dev/null +++ b/docs/DocumentationGuide.md @@ -0,0 +1,45 @@ +# Documentation Guide for PlanNUS + + + +
+ +
+ +## Table of contents + +* Table of contents +{:toc} +## Setting up and maintaining the project website + +* We use [**Github Pages**](https://pages.github.com/) to manage our product documentation. +* The `docs/` folder in the repository is used for documentation. +* To learn how set it up and maintain the project website, follow the guide [**Getting started with GitHub Pages**](https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/getting-started-with-github-pages). + + + +## Style guidance + +* Refer to [_[se-edu/guides]_ **Markdown Coding Standard**](https://se-education.org/guides/conventions/markdown.html) for details about the implemented documentation style. + + + +## Diagrams + +* The UML diagrams were generated using [**draw.io**](https://app.diagrams.net/) (See the [**step-by-step guides**](https://drawio-app.com/learning/step-by-step-guides/view-all-exercises/)). + + +## Converting a web document into PDF format + +* Refer to the following guide [_[se-edu/guides]_ **Saving web documents as PDF files**](https://se-education.org/addressbook-level3/Documentation.html). + + + +## Useful Links +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) \ No newline at end of file diff --git a/docs/LoggingGuide.md b/docs/LoggingGuide.md new file mode 100644 index 0000000000..69f039d9ec --- /dev/null +++ b/docs/LoggingGuide.md @@ -0,0 +1,44 @@ +# Logging Guide for PlanNUS + + + +
+ +
+ +## Table of contents +* Table of contents +{:toc} + +## Using Logging Tool in PlanNUS + +`LoggingTool` is available to use for accessible logging at the package `src.main.java.seedu.duke.global`. `LoggingTool` +constructor takes in a parameter `String` and `FileHandler`. `String` represents `loggerName` and `FileHandler` represents +the object `fh`, which is the _java API_. `initialise()` will automatically return a fully configured `Logger` object +with the following parameters : + +* `addHandler(fh)` + * `logger` will log to an external file as defined by `fh` +* `setUseParentHandlers(false)` + * Disables logging on the console output +* `setLevel(Level.INFO)` + * Any message logged `Level.INFO` and above will be logged + +After initialising, the `logger` can be used as per _java API_ constraints. Below shows an example code snippet that can be used to initialise a `logger`: + +``` +FileHandler fh = new FileHandler(); +Logger logger = new LoggingTool(,fh).initialize(); +``` + + + +## Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index bbcc99c1e7..68f9a0fc4c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,8 +1,52 @@ -# Duke +# PlanNUS -{Give product intro here} +
+ +
-Useful links: -* [User Guide](UserGuide.md) -* [Developer Guide](DeveloperGuide.md) -* [About Us](AboutUs.md) +#### Foreword + +PlanNUS is a greenfield, CLI-based project which aims to solve the gap in undergraduate academic planning in NUS. +With the Academic Calendar Planner, PlanNUS will be able to assist undergraduate students in forecasting their academic journey for their 4 or 5 years in NUS. +With the CAP Calculator , PlanNUS will be able to tell you your current CAP and forecast future grades needed to achieve your target CAP. + +## Target User Profile + +1. All Fresh NUS Undergraduates +1. NUS Undergraduates who have completed at least 1 semester of study + +## Feature List (for V2.1) + +* Academic Calendar Planner + * Add module + * Edit module + * Remove module + * View module details + * Search for module by keyword + * Print Calendar + * Full Calendar + * Semester Calendar +* CAP Calculator + * Get current CAP + * Get results need for target CAP + * See possible CAP when setting as grade-less +* General + * Saving of Academic Calendar into text file + * Loading of Academic Calendar from text file + +## Features Coming Soon (V3.0 and beyond) + +* Support max limit for the `Set SU` function in `capcalc` +* Support discontinued modules from NUS +* Support shortened commands for parsers +* Support validation of requirements for modules + +## Useful Links +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) diff --git a/docs/TestingGuide.md b/docs/TestingGuide.md new file mode 100644 index 0000000000..32296c9e6d --- /dev/null +++ b/docs/TestingGuide.md @@ -0,0 +1,47 @@ +# Testing Guide for PlanNUS + + + +
+ +
+ +## Table of content + +* Table of contents +{:toc} + +## Running Tests + +There are 2 ways to run tests on the code base of PlanNUS. + +* **Method 1:** Using IntelliJ JUnit test runner + * To run all tests, right-click on the `src/test/java` folder and choose `Run All Tests` + * To run a subset of tests, you can right-click on a test package, test class or a single test and choose `Run ` +* **Method 2:** Using Gradle + * Open a console and run the command + * `gradlew clean test` for Windows + * `./gradlew clean test` for Mac and Linux + * For more information about using Gradle, take a look at [this tutorial](https://se-education.org/guides/tutorials/gradle.html "Gradle Tutorial"). + +## Types of test + +This project contains three types of tests: + +* _Unit tests_ target the lowest level of methods or classes + * e.g. `src.test.java.seedu.duke.apps.academicplanner.commons.AddUtilsTest` +* _Integration tests_ that are check the integration of multiple code units + * e.g. `src.test.java.seedu.duke.apps.academicplanner.AcademicPlannerParserTest` +* Hybrids of unit and integration tests that check multiple code units as well as how they are connected together + + + +## Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**User guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/UserGuide.html) \ No newline at end of file diff --git a/docs/UserGuide.md b/docs/UserGuide.md index abd9fbe891..834513155f 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -1,42 +1,669 @@ -# User Guide +# User Guide for PlanNUS -## Introduction + -{Give a product intro} +
+ +
+Hello user of PlanNUS! Welcome to the user guide for our software. In this guide, you can find information regarding how to use PlanNUS and the common questions asked with regards to the usage of PlanNUS. We hope you find this software +useful and we wish you all the best for your academic journey in NUS. -## Quick Start +
-{Give steps to get started quickly} +## 1. Overview + +PlanNUS is a __desktop application for undergraduates who wish to plan their academic journey__, with modules offered by National University of Singapore (NUS). The __Command Line Interface (CLI)__ will be required for the program to work. + +PlanNUS aims to address the gap of undergraduate academic planning in NUS, by providing an avenue for NUS students to plan their full academic journey. PlanNUS can also generate CAP statistics and even suggest which modules to mark as satisfactory/unsatisfactory (S/U), in order to achieve the highest CAP possible. + +In addition, PlanNUS has saving and loading features, which reduces the hassle of re-entering the full academic calendar during each use. + +The sections below explain how PlanNUS should be used, and the common errors faced by users. Sections can be easily navigated to by clicking on the hyperlinks in the table of contents. + +
+ +## 2. Table of contents + +* Table of Contents +{:toc} +
+ + + +## 3. Quick Start 1. Ensure that you have Java 11 or above installed. -1. Down the latest version of `Duke` from [here](http://link.to/duke). +1. Download the latest version of `PlanNUS` [here](https://github.com/AY2021S1-CS2113T-F12-1/tp/releases "PlanNUS releases"). +1. Double click on _PlanNUS.jar_ to start up the program. +1. If the previous step does not work, open up the command prompt. +1. Go to the directory where the jar file is saved. +1. Enter the following command `java -jar PlanNus.jar` + +[Back to Table of Contents](#2-table-of-contents) + +
+ + + +## 4. Feature List (for V2.1) + +* Academic Calendar Planner + * Add module + * Edit module + * Remove module + * View module details + * Search for module by keyword + * Print Calendar + * Full Calendar + * Semester Calendar +* CAP Calculator + * Get current CAP + * Get results need for target CAP + * See possible CAP when setting as grade-less +* General + * Saving of Academic Calendar into text file + * Loading of Academic Calendar from text file + +[Back to Table of Contents](#2-table-of-contents) + +
+ + + +## 5. Command Summary + +Note: All commands are **case-insensitive**. + +
+ +To enter the __Academic Planner__: `acadplan` or `a` + +Commands within the Academic Planner: + +| __Action__ | __Command__ | +| ------------------------------------------- | ------------------------------------------------------------ | +| Adding a module into the calendar | `add `​
e.g., `add CS1010, ADD cs1231 , ADD CS2040` | +| Editing an existing module in the calendar | `edit `​
e.g., `edit CS1010, EDIT cs1231 , EDIT CS2040` | +| Removing an existing module in the calendar | `remove `​
e.g., `remove CS1010, REMOVE cs1231 , REMOVE CS2040` | +| Viewing the details of a module | `details `
e.g. `details CS1010`, `DETAILS cs1231`, `DETAILS CS2040` | +| Searching for modules by keyword | `search e.g. `search CS`, `SEARCH cs12`, `SEARCH CS2040` | +| Printing the academic calendar | `view` | +| Printing help information for Academic Planner| `help` | +| Switching to the _CAP Calculator_ app | `capcalc` | +| Exiting the Academic Planner | `exit` | + +* **Note:** `acadplan` can be called from both the `PlanNUS` main menu, and from within the _CAP Calculator_ app. +* **Caution:** Once you have achieved a passing grade for a module, you will be unable to add the same module into your calendar again. +* **Caution:** If you have multiple failing grades from the same module, you will only be able to edit the grade of the latest module to a passing grade. +* **Caution** Failed modules cannot be shifted ahead of the same module with a passing grade, and vice versa. +* **Caution:** Grades cannot be edited such that a module with a failing grade will be ahead of the same module with a passing grade. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +To enter the __CAP Calculator__: `capcalc` or `c` + +Commands within the CAP calculator: + +| __Action__ | __Command__ | +| --------------------------------------- | :----------- | +| Printing current CAP and MCs taken | `current` | +| Setting target CAP | `set target` | +| Marking a module grade as S/U | `set su` | +| Printing help information for CAP Calculator| `help` | +| Switching to the _Academic Planner_ app | `acadplan` | +| Exiting the CAP Calculator | `exit` | + +**Note:** `capcalc` can be called from both the `PlanNUS` main menu, and from within the _Academic Planner_ app. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +## 6. Features + +From the PlanNUS main page, you can choose to enter two separate apps: + +1. _Academic Calendar Planner_ - have an outlook of your potential academic journey. +1. _CAP Calculator_ - calculate and forecast your CAP. + +For each of these commands, there are more specific functions for the configuration of your desired choices. + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ + +### 6.1. Academic Calendar Planner: `acadplan` or `a` + +Directs you to the _Academic Planner_ app, where you can plan a personalized academic journey in NUS by using `add`, `remove`, `view` or `edit` features as shown below. +Note: You can choose to switch to the _Academic Planner_ app from within the _CAP Calculator_ app or the PlanNUS main menu. + +Input format: `acadplan` or `a` + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.1. Adding a module into the calendar: `add` + + + +The following command is for you to add in a new module entry to your academic calendar. + +Input format: `add ` + +**Example of proper usage:** + +* `add CS2113T` +* `ADD cs2101` + +Upon entering the add command with the module code, you will be prompted to enter two additional fields of information: the semester you wish to take the module, and the corresponding grade attained. + +
+ +
+__Caution:__ + +* Invalid module codes (i.e. Modules not offered by NUS) cannot be added into the calendar. +* Duplicate module codes cannot be added into the calendar, unless a failing grade has been tagged with that module. +* Invalid semester indexes will be rejected by PlanNUS. For more information, visit [Appendix](#101-naming-convention-for-semester-indexes) for a list of valid semester indexes. +* Invalid grade values will be rejected by PlanNUS. For more information, visit [Appendix](#102-grade-values) for a list of valid grade values. +* When an invalid command is entered, you will be brought back to the main page of the academic planner, where you can re-enter the command with the correct information again. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.2. Editing an existing module in the calendar: `edit` + + + +This `edit` command is for you to edit an existing module entry. + +Input format: `edit ` + +Example of usage: + +* `edit CS2113T` +* `EDIT cs2101` + +As shown in the images below, you can choose to edit either the _Semester_ or _Grade_ of the selected module. (__Note:__ Enter either `1` or `2` instead of the component's name) + +Expected output when you wish to change the _Semester_. + +
+ +
+ +Expected output when you wish to change the _Grade_. + +
+ +
+ +__Caution:__ + +* Only modules that have been added into the calendar can be edited + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.3. Removing an existing module in the calendar: `remove` + +This function removes an existing module entry from your academic calendar. + +Input format: `remove ` + +Example of usage: + +* `remove cs2113T` +* `REMOVE CS2101` + +
+ +
+__Caution:__ + +* Only modules that have been added into the calendar can be removed + + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.4. Viewing the details of a module: `details` + + + +This command is for you to view the detailed information of a particular module. + +Input format: `details ` + +Example of usage: + +* `details CS2101` +* `DETAILS cs2113t` + +
+ +
+As shown in the image, you can input the module that they wish to view further details about. + +__Caution:__ + +* No information will be printed if the module is not offered by NUS. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.5. Searching for module codes containing a keyword: `search` + +This command is for when you are unsure of the full module code. + +Input format: `search ` + +Example of usage: + +* `search CS21` +* `SEARCH cg4002` +
+ +
+ +
+ +
+As shown above, you can enter a search key that contains either part of, or the whole module code. + +__Caution:__ + +* This feature currently only supports searching by module code. +* Only up to the first 10 results are displayed. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.6. Printing the academic calendar: `view` + +This command is for when you want to view your academic calendar, in partial or in full. + +Input format: `view` + +You can choose from printing the full calendar by typing `full` or printing a specific semester by typing a number from 1-10, inclusive. + +Expected output when you wish to print the `full` calendar: + +
+ +
+ +Expected output when you wish to print a specific semester: + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.7. Printing help for academic calendar: `help` + +This command is for when you are unsure of what commands are available in `acadplan`. + +Input format: `help` + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.1.8. Switching to the _CAP Calculator_ app: `capcalc` + + + +This command is for you to switch to the _CAP Calculator_ app. + +Input format: `capcalc` + +Note: You can also choose to switch to the CAP Calculator_ app from the PlanNUS main menu. + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ + +### 6.2. Cap Calculator: `capcalc` + +Directs you to the _CAP Calculator_ app where he/she can view the `current` CAP or even `set target` CAP to be met in the upcoming semester(s) from **Main Menu**. + +Input format: `capcalc` or `c` + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ + +#### 6.2.1. Printing current CAP and MCs taken: `current` + + + +This command shows you your current CAP, Current Graded MCs and Total number of MCs taken. + +Input format: `current` + +
+ +
+ +__Caution:__ + +* The value of CAP depends entirely on the modules and their corresponding grades that you have added into the Academic Calendar Planner. +* If there are no modules added, the current CAP and graded MCs are set to 0. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.2.2. Set target CAP: `set target` + +This command is for you to set a target CAP that you wish to obtain for the next specified graded MCs. + +Input format: `set target` + +
+ +
+ +__Caution:__ + +* CAP should be between 0.00 to 5.00 inclusive. +* MC should be between than 1 to 180 inclusive. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.2.3. Set S/U modules: `set su` + +This command is for you to set modules that you wish to S/U. + +
+ +
+As shown in the image, you can choose to S/U by either a _Semester_ or some selected _Modules_. (__Note:__ Enter either `1` or `2` instead of the component's name) + +
+ + +##### 6.2.3.1. Set S/U by semester + +Below shows the expected output when you wish to S/U by _Semester_. + + +You will be prompted to enter a specific semester that you wish to S/U. The following will show if the entered *Semester* is valid. + +
+ +
+ +You will be first shown the *S/U list* which consists of a sorted list of valid modules according to your grades and your current CAP and graded MCs. + +__Caution:__ + +* Only modules that can be S/Ued are added into the S/U list. +* Modules with special grades are filtered out. + +
+ +
+Modules will be S/Ued starting from the lowest grade and will be displayed with the corresponding updated CAP. +You will also be shown the highest possible CAP that you can obtain. + +
+ +
+Lastly, you will be shown the modules that you should S/U in order to obtain the highest CAP possible. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +##### 6.2.3.2. Set S/U by modules + +Below shows the expected output when you wish to S/U by _Modules_. + + +You will be prompted to enter a specific number of modules to S/U and the module codes to be S/Ued. The following will show if the all the fields are valid. + +
+ +
+ +You will be shown the *S/U list* which consists of a sorted list of valid modules according to your grades and your current CAP and graded MCs. + +__Caution:__ + +* Duplicate modules are not allowed. +* Number of modules to be S/Ued should not be greater than number of modules that you have taken. + +
+ +
+Modules will be S/Ued starting from the lowest grade and will be displayed with the corresponding updated CAP. +You will also be shown the highest possible CAP that you can obtain. + +
+ +
+Lastly, you will be shown the modules that you should S/U in order to obtain the highest CAP possible. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.2.4. Printing help for CAP Calculator: `help` + +This command is for when you are unsure of what commands are available in `capcalc`. + +Input format: `help` + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ +#### 6.2.5. Switching to the _Academic Planner_ app: `acadplan` + +This command is for you to switch to the _Academic Planner_ app. + +Input format: `acadplan` + +Note: You can also choose to switch to the _Academic Planner_ app from the PlanNUS main menu. + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +
+ +### 6.3. Exiting from a feature or PlanNUS: `exit` + +This command directs you back to the main page of PlanNUS after you are done using a feature, or wish to exit from the entire software itself. + +Input format: `exit` + +When you exit from the _Academic Planner_, expected output is as follows: + +
+ +
+When you exit from the _CAP calculator_, expected output is as follows: + +
+ +
+Last but not least, the expected output when you exit from PlanNUS is as follows: + +
+ +
+ + +[Back to Table of Contents](#2-table-of-contents) + +## 7. Loading and Saving + + + +Upon running PlanNUS in the command prompt, the program automatically looks for a text file with the name _PlanNUS.txt_ within the same folder as _PlanNUS.jar_. + +If the text file cannot be found, then the following output will be shown on the main page of PlanNUS, before the list of commands. + +
+ +
+ +If an empty save file exists, the following output will be displayed instead. + +
+ +
+ +All the added modules will be saved into _PlanNUS.txt_ after you exit from the program. The next time the program is run again, it will load the previously saved configurations, and will generate the following output. + +
+ +
+Note that the image above is merely an example, since the exact output depends on the number of modules saved in the text file. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +## 8. FAQ + + + +Question Type|Question|Answer +:---:|---|--- +General | How do I check which modules are offered by NUS? | For more info on which modules are offered by NUS, visit [here](https://nusmods.com/modules?sem[0]=1&sem[1]=2&sem[2]=3&sem[3]=4 "NUSMODS"). +General | What is a valid semester index? | For the purpose of this planning software, we have come to a decision to limit the maximum number of semesters an undergraduate can take to 10, which is 5 academic years. The notation they are represented by is by an integer of value 1 to 10. For a fresh undergraduate, they will begin at semester index of 1. For a year 3 student who is currently in semester 1, the semester index will be 5. Please refer to the appendix for more information. +General | What is a valid grade? | **Letter Grades**: A+, A, B+, B, B-, C+, C, D+, D, F , **Special Grades**: CS, CU, S, U, W, IC, IP, AUD, WU, EXE, **If you have yet to obtain a grade for the module**: NT +General | What is the name of the saved file? | The name of the saved file is `PlanNUS.txt` and can be found at the base of the folder, in the same location as your PlanNUS.jar. + +[Back to Table of Contents](#2-table-of-contents) + +
+ +## 9. Useful Links + +* [**About Us**](https://ay2021s1-cs2113t-f12-1.github.io/tp/AboutUs.html) +* [**Configuration guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/ConfigurationGuide.html) +* [**Developer guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DeveloperGuide.html) +* [**DevOps guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DevOpsGuide.html) +* [**Documentation guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/DocumentationGuide.html) +* [**Logging guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/LoggingGuide.html) +* [**Testing guide**](https://ay2021s1-cs2113t-f12-1.github.io/tp/TestingGuide.html) + +[Back to Table of Contents](#2-table-of-contents) + +
+ +## 10. Appendix + +### 10.1. Naming convention for semester indexes + +For the purpose of this planning software, _PlanNUS_ limits the maximum number of semesters an undergraduate can take to 10, which is equivalent to 5 academic years. Each semester is indexed by an integer between 1 and 10. If you are a fresh undergraduate, you will begin at semester index of 1. For a year 3 student who is currently in semester 1, your semester index will be 5. Below is a table which illustrates the corresponding semester indexes for undergraduates: -## Features +| Academic Year | Semester (as of Academic Year) | Semester Index | +| :-----------: | :----------------------------: | :------------: | +| 1 | 1 | 1 | +| 1 | 2 | 2 | +| 2 | 1 | 3 | +| 2 | 2 | 4 | +| 3 | 1 | 5 | +| 3 | 2 | 6 | +| 4 | 1 | 7 | +| 4 | 2 | 8 | +| 5 | 1 | 9 | +| 5 | 2 | 10 | -{Give detailed description of each feature} +[Back to Table of Contents](#2-table-of-contents) -### Adding a todo: `todo` -Adds a new item to the list of todo items. +
-Format: `todo n/TODO_NAME d/DEADLINE` +### 10.2. Grade values -* The `DEADLINE` can be in a natural language format. -* The `TODO_NAME` cannot contain punctuation. +As per NUS [Grade Policy](http://www.nus.edu.sg/registrar/academic-information-policies/undergraduate-students/modular-system "NUS Official Site"), letter grades will have a corresponding Academic Point attached to them. Special cases such as Satisfactory/Unsatisfactory (SU) grades can be captured by our software as well. Below is a table of grades and their corresponding grade value. Do note that the grades of forecasted modules should be declared as NT, short for Not Taken. -Example of usage: +| Grade | Academic Points | +| :-------------------------: | :-------------: | +| A+ | 5.0 | +| A | 5.0 | +| A- | 4.5 | +| B+ | 4.0 | +| B | 3.5 | +| B- | 3.0 | +| C+ | 2.5 | +| C | 2.0 | +| D+ | 1.5 | +| D | 1.0 | +| F | 0.0 | +| Additional Grading Options* | - | -`todo n/Write the rest of the User Guide d/next week` +*Additional Grading options include S,U,CS,CU,IC,IP,AUD,EXE,W,WU. They hold no Academic Point Value. -`todo n/Refactor the User Guide to remove passive voice d/13/04/2020` +[Back to Table of Contents](#2-table-of-contents) -## FAQ +
-**Q**: How do I transfer my data to another computer? +## 11. Features Coming Soon (V3.0 and beyond) -**A**: {your answer here} +* Support max limit for the `Set SU` function in `capcalc` +* Support discontinued modules from NUS +* Support shortened commands for parsers +* Support validation of requirements for modules -## Command Summary +[Back to Table of Contents](#2-table-of-contents) -{Give a 'cheat sheet' of commands here} +
-* Add todo `todo n/TODO_NAME d/DEADLINE` +#### *End of User Guide* \ No newline at end of file diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 0000000000..f980e760b6 --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-slate diff --git a/docs/base/Architecture.drawio b/docs/base/Architecture.drawio new file mode 100644 index 0000000000..c39847c6d5 --- /dev/null +++ b/docs/base/Architecture.drawio @@ -0,0 +1 @@ +7VvbcqM4EP2aPGaKu/Fj7EwyO5udJJPbzKMMsq2NjBiQYztfvy0QGCTs+J5sylWuFGoa3c45atQiJ3Z3NL1MUDz8h4WYnlhGOD2xz08sy2u14K8wzHKD3TZzwyAhYW6qGO7IK5ZGQ1rHJMRpzZEzRjmJ68aARREOeM2GkoRN6m59RuutxmiANcNdgKhufSIhH+ZW32rN7d8wGQyLlk2vnd8ZocJZjiQdopBNKib764ndTRjj+dVo2sVUzF0xL09/zZ7o1bN3+f02/YMeOn/f/3g8zSu7WOeRcggJjvjGVb8+9y++PTr//opvLm4nxuVZ7/upfMR4QXQs5+uGoujHw50cMp8V85hOyAhuQanTZxG/k3cMKCNKBhFcB9A9nIDhBSecAARn8gZnMViDIaHhFZqxsRhEylHwXJQ6Q5aQV6gWUbhlggFuJ1yyyfJqHnfiSdl0glPwuSlmxixNVyjl0idglKI4Jb2sw8JlhJIBiTqMczYqKmLjKMShLJVQZwWesOeSPOL5PqG0yyhLsqmxsRm6uFV6Vu60vZaNRO9XRFAiLeYPTxV5ZIPAVfJLnC8xG2GezMBLPmN7ElepWUcWJ3MBmIXLsEJ+mOhcd1Jzg7LmsrGfoFEUDWAqy9ZKgcjWTGvF5kzbr7eHKPAnQhx3BBpplc5wURnp3JSRvJnw/esbTrHf+zN+ub73Ow/Rc4BOzbbGeI3qOArPxMoDpYhljA9ROsymXqA/5KOCpeB5QUQHJFGAs8WTLMZRYav44Cnhv8T1F1eWflfunE+rhVkjNxXy9ft9KwiayBd6Pc/1sl7CnOWNttyi/LscAhTm7WalouH1WJuycRLgZXOf++FQWbFhigaYv7VK6Wyv8MttoFdhSzBFnLzU21xC8RtGYLglvR1foXe7Xa8iH7d8qroAqxUpqvQUteXToNUDhEKzilssHNLF/XUNpb+esbxb6vjq/nCR92CnMrT0wLONDDcQ1frSXSpDiAB+6DTJ0Ld6trd+DKiqqVEUZqtRTu8lE0+NAgWt1pWJq1TkKUFiRzLR+mstl4naLcV/TzIpXgg+T7TC3oJo1Wr3DKMerawDRatmfdn/y3BlKcu5ZWyoQ0fV4X7Clb08/OjdWh7e9qRD67Pp0A9wsw57vuu4e5CT96GilcaiTV/q1K3WnlRieetFK7VbB4lWerA6i2MwwPY8xYkmmGNGYWFGYYVN3Xry3DajoO5dyqhSkavfINcNMwqm0lr7Y2QUli1sFdZfUtYD2h35vjrfdx2OtuW7mtPaL9/NVr21cvX+iHwv3osrhH8gR7Kvs7i/uQc6LNlt55Bkt+0NyV6I5JBcb2lcv+MsEUdOR8KvTPid58a2Jby7aI+8F8K7ht/4Lv72cYzpHZ7xfgPjE4y5RnhAgFfITXGfL6R2GqOARIOrzOfcmVt+ytEKE4Nn+zSj1ZCEYbYRThhHHPVKKcl9EnTA7cAPJq0r9sQudKgLZXNehp9wT3iXRcA7RDJiYaD9BAvqN1Bu+RKgck5n16zOki3IVEN1bQj1I64u4bNPB+CSJUkmW5pD6Y5gdq33hbnhCAVWfq5HpiPOW+Hc8t8ZZz2tcsNS8SZgGV0WHvHeMd6m4bwz4HqyuQtTUlR9hHp3UNvbv/dtB7W+l9YwpiTbVFTOD/QX7jcIMAIoRXUF4veCEOenpsYKW2eF3cAAinqYwiJEOGGi/iT3VZjxbi9gprvaG5i/L1QdDdVHQCj8jMF5fyB6770MuxqK12Mej8UpyxnsvYwroYIjoCsD2pDE3xegt8h+dIbhpUgavN5ePMb82m741lUDb/UzXH0Nrny3sNZnC5uc7aoJFoT9fmNG0Qt83OufbHLmnE+O9vXDzr4GlAT62F9TOGpq1FGSkCt/TdGuV6QmMxecE+/qaFbPY57Fcarx/5jEXJzEfFtj6wlk66y9b31x6+RsNSQWTXe9JXbJKZVbp3D54ehhT6mgOP+fi9x9/o8r9tf/AA== \ No newline at end of file diff --git a/docs/base/Details_architecture.drawio b/docs/base/Details_architecture.drawio new file mode 100644 index 0000000000..66a7c2741d --- /dev/null +++ b/docs/base/Details_architecture.drawio @@ -0,0 +1 @@ +7Vxfl6I2HP00ntM+LCckAeFxxpndbc9sd05nenb71BMhKlskNGLV/fQNgkBCFEX81x1fxoQQY+69uT9+idNDg+nyAyfx5BPzadiDwF/20EMPQhMgR/xJa1ZZjQVRVjHmgZ83Kitegu90c2deOw98OpMaJoyFSRDLlR6LIuolUh3hnC3kZiMWyp8akzGtVbx4JKzXfgn8ZJLVOhYo6z/SYDzZfLIJ8itTsmmcV8wmxGeLSq/osYcGnLEkezddDmiYTt5mXrL73m+5WgyM0yjZ5wbw+Nev/zx+/DZ8XMS/TB4ekifXeZf38i8J5/kXzgebrDYzwNk88mnaidlD94tJkNCXmHjp1YXAXNRNkmmYX/bJbFK0zfumPKHLrYMup0JwiLIpTfhKNFkW85ndktMH58VFiYW1mfFJFYd+Xkly/MdF1+UUiTf5LOlnDEXz+/dL7nqrJxBHn7+8QvJBM2PPIYl+m89qEycAj9O382n4FIxoGESidB9THoiRUC6uhHn1c1l3L4icEFHH80n0WBiSeBYM190CUcOpN+ez4F/6O51lelnXFjClpYJs60LC2d8FfdNOR0EYDljI+HqkiJq+RftFy8oV1+4jYhdY1oDTwLsVS4RlLKFbB9PUgYk7wPL+43PowtcX/vXVv3v6jO7vvi80WP4R3DCMoxG1PU8Ho993hwB0AyPEqiQvDSOswfghZEMS3jKUjkf1UA4dC1sdQWmqitQsr+eFEtVXV8JnYupvGMrRCG5RpT20rY4WV0sxSmhdGkpcg/IlYTwNt24XS2GTjo91WDpwiOyOsMRXt8JazWEijfy7NN4WJRbTSA4LxVzw1ddq4c90yg0MrE3FwzIHISutqqUK7OvKwxdLKS4VQ30fpBOg4QNdBsnXyvtsnNC28nI5zLSwqhTUQW4lwozNuUebQ8yE8DFNmn2P+tIjTJ1WUrBcZ82mjtOQJEIt0mB1VMo/4ZkF4puV4Z21JbzbdJF97/yu6oOK0pEaYKj9ZPNS60ewj6wqzeK0wWzHeJUVEwFz57DU9lAs3bKushGUKisgaC88+1jhbehswAqhTQOAwwldiBgYVlXG78Cmu2N13By/7q3j06vPvC712a5huZWXIiEBUeWFWioTpUt2+TJlQQDTMKtDsE+jW1vRrQ12D9rd2f40uu13ZZgpcFg2TeR2I7bGsPRg0zR7VdPEzjWaJroq2WK02+v2VSZy5H6EDo2qFF18Ei3ivuqh7s5hqu2hfQYPdbrTIradkzjfHs8Vh0ewhlu1/CuUIr4qKVp2N1IULrzDiVNh9qtXrdMIEx1mktjpn98kNwF1a2XKmtCakNUq0K2qS5Uqoc5I65u259DhqLpgrNcHJLu3ZbZZL/YSo3aSXa3I9olv7YsaI1AMzW4pR6zIuthRalBcZyTfY4vtcJKD6yG5ktKx2hniJQjevyTBYV+J0GSWgpZ0h5emez2Df+cRn04DL90njW46lb+HLLby+IANNuWBVZfJxxpinm6btJ6FGpB4QEJvLiTA3hBtTOirokQXh7SeoPjE/HlIn5gQ6xuijTun8OoQrT/mDth0yqJbPphynv02pGQliizF5Q6muDUwH5cejZPgDc9mPNW98MvjCU/ypAsMB0vPAa571K6OiWvZLfNM2S35aWQrBxofBvKUUnPsr39quJbcE8ZKWmjv5BO0FepDuaMTh//wNE+7PxzRr4SX2MIKL4GB2zFTdKVNfJZrtLRFaZ6XtvD/6bfnOUao7D0VByUuZ7f1JMTn4TfqJW9YNiYfwNWBWT9I+ANZyh6o35almEqoU6wehxqK6GiXoSDgGvsdQOnMRI49JflG1GsiKjRdw1Kp2jb6EeuqAXeQ1TxT9KP9EVjdLX965cF4TLlgo5juiSAqBBH16GxG+OrnGquFtyQylWUSRGztqlXG5FUkDMZCBQ+eIMHaWVOnCjwS3uUXpoHvpx+j/eGZbKed//ZMyfHp8vB9Df/gqZywnhS6i+NbDmnOk6tVD+5qc7WnCmm0gus2oulqI1csbq5d9YZWJxVK37KAZFwHm5bWDY7aI25OC6FLOg6ylE1gy2nnNqIjw916Tte03bPay9E/HikZVeHTOnA5JhDqO8q5WrffRQqoWXA71NuO8kcdwnMvynhlq/uI86+KdPbMex58+Fwd8HHn5ESx/AcAWfPy3yigx/8A \ No newline at end of file diff --git a/docs/base/Global Diagram.drawio b/docs/base/Global Diagram.drawio new file mode 100644 index 0000000000..9fbfbcd634 --- /dev/null +++ b/docs/base/Global Diagram.drawio @@ -0,0 +1 @@ +7ZlLc5swEMc/jY/NAAJMjrGdpoe+pp5Om6OMBGgqkEfIsZ1P3wUECPAz47o5OIeM96/HitVPay0eoWm6eZJ4mXwRhPKRY5HNCM1GjuOOXfhfCNtKcJBXCbFkpJLsVpizV6pFS6srRmje6aiE4Iotu2IosoyGqqNhKcW62y0SvOt1iWM6EOYh5kP1FyMqqdTAGbf6J8ripPZs+/dVS4rrzvpJ8gQTsTYk9DhCUymEqj6lmynlRezquFTjPu5pbRYmaaZOGRC9fh1/+43m6WxG2caLHz5Mgw96d14wX+kHfuJigblestrWccjXLOU4A2sSiUzNdYsFNuYszuBzCAuhEoQXKhWDED7ohpQRUvSehAnj5DPeilWx4lzh8E9tTRIh2SvMDL7RzAYBmqXSQCCr02NejNTeJc2hz/c6DHYjfca50n1CwTle5mxRrrnokmIZs2wilBJpPZFYZYQSbTW7VRpKij/N/hfjI8b5VHAhy+igKAhpGDY9jZZF4LleOYcO4EdjZCbKgOo9gKjRTQ/qct10/5bbDUhwAKlIqZJb6KKnQb5mrz58rrbXLcp2zWdiYIy0hvXpiZupG28/4LThLIaINu6aqbY996Y7f4c7GwVdf5gDSRlWdFJsSm5yDR+MR22lkvYzyPcG5A+Ypxl5KFIIWGJJgeQJKJpI26rMYjtPQ6bLFyWQZrQryhdi/dgKk1KAhvog1aehXo3mptSMBRCcJ6UDu1wbxOd30XLn1eaz2Tbb1Espra22emQTjwbE3UV24CyQ7zf4Fg90GFOIrVjJkB7YFFtvAjxYTNWxvDXkfhdoknKs2Et3cQfA/i4YLLs9Q0EP6rF1Zxl/vQmrR9RzmNn4yLQOhLIzURWCwUSXwj8Y4P+T3ZL+eUk/ov7upE/G9wvL+peZ3bFumf1YEjHYnishi4veDfBzAD8591/h6oKsG+AN4GgA+MNymd/oPo9uTINoZ/r2w4Auon9Jt+fc0vdeuoc3c6AbBOAlB1ZvlJ93SYmcPZcUf+F7V83hdnCjvKHcH1A+INuoP3XF907qT10NH6w/z+fwrRUr3TBlDAPr2WhpBxVGPWZ0uZpVv0I7WrJWee0qNavb/3pxegfq1CrVte/vxnb3ELvXLVTtYaV66KBoNDsoJirlo/5bEZMwA7gjjNkmYQ1vuxk7v1zsnucLMhqcyOjx1yrejvzpXYZa1Kc2eCO1e197XgvZ+7fk9neI7AlX5FO+F/5HskX/k2TXvRDJ7vhIIn8zyWC2Pz1V3dvf79DjXw== \ No newline at end of file diff --git a/docs/base/Packages Interaction (With opt message).drawio b/docs/base/Packages Interaction (With opt message).drawio new file mode 100644 index 0000000000..9029b3b77a --- /dev/null +++ b/docs/base/Packages Interaction (With opt message).drawio @@ -0,0 +1 @@ +7V1bc9o6Hv80mdl9iMeSrNtjLm3O2WlPO8tmu3veDJjgrbEZ4zTJ+fQrgw22JEAYWziEPLRYGIH1v+j3v+oK3c1eH1J/Pv2ajIPoCrrj1yt0fwUhdBEQ/+Ujb6sR4Lp0NfKUhuNibDMwCP8KyhuL0edwHCxqN2ZJEmXhvD44SuI4GGW1MT9Nk5f6bZMkqn/r3H8KlIHByI/U0R/hOJuuRhmkm/HfgvBpWn4zIHz1zswvby6eZDH1x8lLZQh9ukJ3aZJkq1ez17sgylevXJfV5z5veXf9w9Igzkw+8PA1nsT3n66zP+If5N+P//gCBz+uefFrf/nRc/HEUZLMi1+cvZXLIH78PH/5PIs+p/5MvLx9mYZZMJj7o3z8RZBfjE2zWSSugHi5yNLkZ3CXREm6nAJxQtENEe9Mwigqx+MkzueaJHFWudVd/olx9RmLx/4VpFnwWhkqnvkhSGZBlr6JW8p3SbH+BQd6bnH9siGnx4qxaYWUHi4G/YKFntZzb1ZZvCgW+pBFJ8qi+1F2TmvO62tOIXewsuprGZ/WBKirVfeYsurKkgfx+CZXGuIqmQexbnVLLZCP+PFomqTfkzDO7sNUqJ8wEZ+5z1dRzPQ5zH9gcSWe4D/i4tp1XPFDipH/FiMQlyP3r9VP3L9Vr74HaSiWIkg3X1HoS7L8dX6aVa9jf/6vZPnbil9b5QFB8ACMcUC3cY1PdrGC+K6nINu12IVeCcY19apyTIUfsIYdyrE0iPws/FVXyjoWKb5h9dxrhoRcrLKLXIAIZwStN6FSJ8iivkie01FQTFLVqdK8CDOHePJcJa+Xs61WS5ltycXrpTiCsdGFsdti7BXhdyw2NhUAr1cCgNw6lyLsNeN4AvjuibpmdvfC7L1jdtQvba8wO2ys3vnuiTpmdqACxV3MXgC7sb+YBuOCXSqcv5UPekI24NVRI3Abkk2ZSAGVHdMNq2RDN98jP/7jcaAQsALzv4STIAqXRJxX1ERUDFdUx62wdzNfjJVqZJREkT9fhMPltPmI0GTP6UKQ45/BYqVQlqPJczxeckd+tbZJXa1mbFHXmBsPa3YqqMd0toPOYAMuUKBXezabjqSP4Tum5mQSkNFIR80x5cO2TEEky6Knmt86ncJl4W+NkkCVzseFWPkdlLwZZfna3OaPHY786Is/DKLvySIsoMIwybJkVrnhJgqf8jeyRLLQk+csp/3d2lvVlsUNcW2ZobrKSLPKpLNFNjC25cVar+ISBEmbmorpqlCJ7ef+5e01MFeFdjsxYAX1AVpFfTnog01An00QRwxBnCmGKzjOdRj36mb0dXl9tLVeZ2aAmuI3WfnIE23BAYLT/LfKbfP8hsXOr7qWvuq6ZPhyjmQyWQTdoETN3tQcJaqSUxMAF1UFAIgB1kQAaiJeFWgzmWxxK2tNfkqM2RM0jUCdIWFTNL12mJdCRO2CaXiYe+sc2ZuNAj17DxnOfZc22LtnxuLaAjiWvTFCDmDu+g/Up7Vs8ZcbVN3OGAj4mccp2zc2gCVjQ+AbNvZ0LMzgEJGWTEcqqSqBJK5kGEw1PMnADv47CgeX8e9dyqtAF+I1vr3C9xIFkzSbJk9J7EdVGlqnxW5uNTcH5WCsQh9tULCzmKB3Ic8O8gDoGdFHVpLt0UfjSdu/95+Rt98ESNSgTufMtBdQoH5Fvq4hdzjc7O8uRXUe95DDqu9LHkRTHCG+BlSncSUb1rMbJwNliPui2rSqjXDqVKkFTqvogHtYdspF0zXgreA1zPLHzM06WFyv3HiMl+9vHjG/eKtcyA94IKdK6tBYkZ5Mb3qSA4EC2opmBFCeVieItuwtuF/sWvRTk2P91HVnhSc7oxtJ6v+eZ/PBxswz90v0wm29Rb5O4reWfRJN08oIxQ6qwxQlVHMWrmv04X17xzhG9stGz3x2UlxnLS+HykeeTyzJB5L9fx1vHAaZObbR9Sdwjz9tVcerNPB6zvd6fCuLHZC2wbYE7fb5dnBXvjfVABrkYiqGntUChz4Fo6M8veDWH/18WrKDlLe/lVamO6CcYMOPz9SSHXTG0BDvmaiFXc7CLnZYmp5JTmrdJMPVjcttsmn56ajgTqjy2zZYd8TG0y8fkMyvqCm/ovLBDkwI3c+vreVHGwQcLn6EHX6ETnMJeiYXSqK011QucG7j756r68IA1ZL/EUQjMa/C/wLRZDqmlwvk1Jo5v0AHI0H5oJoRWMKGWTge51+jrdSrg7sWMBeSotVIU9uoY5/u4jXqTvgl8cdi5N7P/PMlBMZE2heoQggCbBLCICfMtn1iKeFYqKLtJXmn8u+XUnjZlk235Yqz3iuvV25OIUoHO+tbZMX35siHnDsU8M1fXTao66Dquw3rAvNKWEqUqe1WwmIV/A6mguOge/Pih/mvvUtmMz8en+9OhOTSZkNI0FmzA6ymcDzkZrj7ezx/VpsenBEhkFP3iHkcqaSgFjchoorHqvLl/GlRx8lYk3dGkE1KqMbKFbq5mc+/++meWqTeV5VN4JadlQwJbsnZ7EEV5GmkS5frCTDtiqgq5l6S8wPIF3MlXYeJRsJs6jqq8YMtJewdy9bYD9hEK1tkxILhpCVbVoqO49KW3CNYUE7daI+Wh2WBttzzoev2DKWh4zocezVDB+EyS+mYrKR3arYgd2fLHoy5bFwYFzSJj8J9k3VsqVDVHzAIIsGHQe4sW6opN8mR2afXpd2yrXnA+WwhpE5forFbuE2IRtsP6nWmdNYenlxk6sFCByDexL+zlaT7E7dMM7eoXjOdSuHk7opdCkcuezRO5oKKurFcQUnVTIiVhhmlgb9kwrNVKx7ZD2Z0vUS6UyuqkSAr/rOlhdQVUqfirdKC9DCJy5L9rAZJdBabLkQi6672qHGpgDg2c6E567SXuVBymFzpqelIc6gfeouhIMU3WJ2tGazHN5pt4p4a3iCGzUTa2sXZYZk9PQGksiitCm+675dTCR/CevgQQ9qeVb0X5JYb2js0v+vczjzHQ0fLEZaFSExr1/Jm8LLNHFdot98LWRG+lfW5Eb4WZe+9ixQFCu+bixFzINs3W9eSpDZPSJ/jv/1dEad+WDAd9rvHkq+AEE+TcOTZtG2Y6jP/Fq9diyuv4kcjk8eIU6p/VWpqVqhT5vTbcQoY7EnWa/XtBJuo5J9hqn9GZ4XK2Ls9Ulys0APhgen+fFTAsR1T0aMSqAWNYaxy7oMyV9e7r0FG6cfQGRUb4lRagxk0W6nkGdwH+QK9bdkPtyoTdDJ3oae4C4kmhUrXYbi7JT+s6+nlIIhjvBhc78U4XUrzzlAdZY1zAzQH+lBu18/He6jYT1a6sV78UxVu8MO8rhc8WHX+YFRz/lC3zG+6FG4YabldhRvM5Q47PrChqdtglk9L4ar1W1RtvJQFnO7QH/1U5K4fDos2FJ+8gSHdmSdWyzbAZRfa0AMws12osz61yADsnik1pONbkSaObLeS06Bl1ccgBQb45GW1Bo7TixHYkhFYcr6pX085fQWootuOXy+3BxHZ2INA5tOm2IjLE9kuaDXoT36xPjrq5tJHPpeqrMooVQv9WjCyzdxcs5Pi298nYqgoSw1XZXNuuBD/xEn+MkuulKIIfK8IRT9Mg06PWJfLi2kJWvdUTJCujkhcn9dp3QtuKe5AZCtN11bEqhMcuBr3FL59jLMw2ohRLi6Ljy4vEvE8qpLOsrSo2PUuSpblwoORH8eaMvB+UKkFauTNEUDdxmaa/HOr3RGAe7HsSlrwkzdMAu5h0Pdi2h1j2q15vynm9djx/somth2Tg3NNbbsKy1s7oeVyuFHz0JKUV8y8M+kJZl2+lnX2dFuUiQO3jfIZjb3J1cPaOxc4Te2l/ysHXONld8qVcblYDQnuOOPOoVg63IVrajHXp7/Z2fA1EaciDFiY+1+DxUJ3CubZEEWDivnJUTHQWJgfExXzHqDiUoleULENVAyO9ATjE6Fi3hYq5vZRMWh0JNAZcfhRnXJxDRVzdni53XtCxd3J125UDNwWYfHWDK/lt3iVd5lVSYQabz66eYiSoR8pEvl+muhN2CjQM/SQYQ+3hB0IgFJ4BmgyWSktb6qdRt5dUhcwcDn06bhD86MJ9R0HGivtPp50WApkH046lE9ya3qgDuFg90Rnccwh7KMNZUcPehKjmJ4K150KNGj61FGplp3sVSkZxdWsuN0YNTAojrsg+lZLaiGhDpIaIXHPgWzXgeftIGfgARn5uIA7DROVICO62aj6INacyCftC9oDbt70K3ZRvV8xI2VQprG52SnQKnuYGYRDqaG8WTq/kOe1PmK5PQYpZkRq/cKhEJLtR6gbF7VDyfkDT3oyu0H83zZmOoY7m5+kizT5pNrOjB2CJoOuGN2AJjsoFREHytvM6XGTQdFPN+mUR5xJbr7oFPYOqWpcXsumSevu6x+0cRIgTEJhnFNHRZACHOkcWnL9RYsEMzCsOxERSzsBlZWSxonYlYh88/789nXmp0P0kP3582bx24/PN9fqeve55duW9dZQZTvrM5n1ITMznRoEgcVlmiRZFUiJx5p+TcZBfsf/AQ== \ No newline at end of file diff --git a/docs/base/Packages Interaction.drawio b/docs/base/Packages Interaction.drawio new file mode 100644 index 0000000000..1920b0f8f4 --- /dev/null +++ b/docs/base/Packages Interaction.drawio @@ -0,0 +1 @@ +7V1bc6JKHv80qdp9CEVfaR6Tycyc3Zo5M7XZ7Ow5b0QxsoNgIU6S8+m3UdC+qS2BlpiYh0iLLfT/9vvfmgv0Yfb0uYjm06/5OE4voD9+ukA3FxBCHwH+rxp5Xo8AEOD1yEORjOux7cBt8ldcD/r16DIZxwvpxDLP0zKZy4OjPMviUSmNRUWRP8qnTfJU/tV59BBrA7ejKNVHfyTjcroeZTDYjv8WJw/T5pcBDdefzKLm5PpOFtNonD8KQ+jjBfpQ5Hm5fjd7+hCn1eo167L+3qcdn24urIiz0uYLn79mk+zm42X5e/aD/ufun1/g7Y/LsL7aX1G6rO84zfN5fcXlc7MM/OLn1dvlLP1URDP+9vpxmpTx7TwaVeOPnPx8bFrOUn4E+NtFWeQ/4w95mherKVBIA3RF+SeTJE2b8SzPqrkmeVYKp/qrFx/X77G+7V9xUcZPwlB9z5/jfBaXxTM/pfnUJ+uv1ByIG3o8bslJcH3OVCAlIvWJUc1CD5u5t6vM39QLfcSiY6QturbgcTa+qtiXH+XzODOtbcOP1UiUjaZ58T1PsvImKbggJDn/zk21hnymT0l1gfURv4P/8oNL3/Mxa0b+qEcgaUZunsRv3DyLR9/jIuFLERfbn6gll66uLipK8TiL5v/OV9dWX63IAZzcMRiTONjFMxHdxwiLfFmM4j2LXVOWX9NDXO4jSq2X4rGkEHS+EvnG19mmGSviNCqTX7IaMbFS/Qvr9dmwLcShxLaIYHmK9Y3X3xLFXpmIULx/ovXKaBOtOHtz2y9gdv+d2QfH7CgcNrNDRfXaMjvy8f6JemZ2QI9i9tr6jaPFNB7X7CJw/k4+GAjZmGxZgd+Saso8IXNLNKLTDF19T6Ps97vbfUDoSzKJ02RFwbmgI9J6WNAb1xydlhEfa3TIKE/TaL5I7lfTViNcjS2LBafFv+LFWpusRvNlNl6xRnW0QZC+US12qGiOgFeUSsRjoRcQDWAxAxMy4nuQ9ASxdFjLaXqXvGJyTiYxHY1M5BwH4X1XaBkRWRMDbEDLBmIGtC+wDHTxvFvwld9DyatRWa3NdXXbCXflvkT3cfo9XyQ1ULjPyzKfCSdcpclD9UGZK05Mviwr2n/YOJcdLXPgS6tscEmQYZH7W2N22Gypa7VZxBUCUiyaDuhEnMQOM//qdAnJibhuLwAUIB8IRMhXIT7YBvG5RHDUEsHZAria4XyPhTiQmO6yOX4xeJOZGaCWMEDDE+pEO3AA57ToWThtXp2w2PtTl8o1XzYM38yRTyaLuB+IaDBN7SGiLjmSAPhIFADAB1gbAZBEXBRoO5ns0JJ1Jj9NfHEgUBoSmfdhWyyNsCJEgVswDY+LbZ0je7NRbGbve0YwccPeA/MUIeyIvXHAPMD87Uv2PqBjfx8Zglvo6pbDzyqt0L2zARw5GxzgsDE28TCD94h25DsGQHY2oMHZCEw4ONjDgC8Cwk26ap/2quEFf0+uL8iNQsG8KKf5Q55FqUhD57TYz6327qAMkwz0AQb6gL78lCZG/04eI3kAxFb0UZVkd/QxhNIOG/8zivXbIAkJ6/TOTAcRBRpW3usShl4IBQMfIJnHMfKY+LkSQbR2NkMPiNMoWWKA3WbJgB+8qzZRtXH6KJFlCgJPJBg4ra4DvkXQ7F3ZvUzZxU9JWd0md+0QqY/XobwQN8fbW6wOnoUD9QaPZFZFI1rr0pOpToywh0C4fcnygwIPUE1+jo/SeYHggAGo/YhBSF25Y/CwSHYYx6YvjWPLwQysBqtbSfH/lrP57dYLtI9bDCKsvUP2ThLXVmMWaj2YrcRQfpVIRjFaKucsQtvozcf+jjNpJBBMWnUHsAOT1rlEDiySqLA3VItFrKUywKpUIjUq2bO5sigWcg35P4Ib8nGnEViX78q1upvxnax4BOhv8IKaATwUcOotM657ZbeVcuBDS71Iekgp8rSqebiORj8fVuyg1FvvpJWt3QWhUrP14uIxNWhoK8eAHpioA9PqwHQeVzhoUyUr+4gbLPmHZBuPsJRRMaqZE+rstgtL7mS0w3ZnWHEphV1RW3aFwYFS177LsS0yHL1HLXyPICp7O9xzfA0xi15rF3awvG010OkgmcLSuKVsIB97SjxBm6tv8dAjCItp/vgjTkd87q/xYhE9xH/7uyYyHOCUJjlR+5z01qeoBgsjzi6xWLXYoIhZMh5XP2NsuJKxXhcQDMgQDJnirCT0DA1T/aWVdOOY5tE4Ls6ZEJgxT23dMeRfKXBICKLn9zK+3l+S7LxlgkJPCQbhEGmkIIFDUlDdjq/Lov1/ZPNl+aaIQRDx9J4DilySQ7cbF+jqaj7/HhUHqtUH33cwgTsQD72npCPPH2NN25lEzFQNBBq5656oeqnuvCLnOes6pGSNdsiWS1UXGFyWlWy9YqkaRzGbGKWKjlh8P+mGmERJoZMGqR8QKajm7bqj5XEVQh13A/fduCs4uEp+YpWxaJXP28kGPbqTa7Y5nT9JquXzAaIho8j35fwe2XofR1cPcwcTHpqsZw+zkTcxpBynnG25JoH+Sqv5eYXjPj4l1aXvakQ9H4vDlDofX/dyQpdYLug+FtubjpI0jhzj9QAK3SocaptTbCz6QGK7mIV7FY7aQmOdYuSgFu6fqm9lo+ev1hpmVMTRignPVq1gdhj7mNrS+1MrujehKv5zpQXxlVI0g4p3Sgs6wNS7I0c70BxtQnVqmLLsqu7qjhpDqKT1PRxuLOragLLgVdTRvoRx+nQi4H7YF1jsy7bH5tubd4SxFwhlsUzmfgZNRbPHuxbICxQga9m/3pWxZ8eldgeCWzUvGbaROZe1rI1IHJSAxqQNBOZCpTWcMuxh9GLOJ82VCNO6dakZHIT9kCoaqnJO2oaTnXdhvCAS2aP1YP7FgEQlABpP24sH8iA7NFvfEqI3zhbLbLB5jB63gyVQMdIUG/Ib2KUzwvSY+LdsEwtchwHfHJl84jERlckuiyBBkgvpNXWUbjx6C7vjvGfTTWIpVIIrTA+umFxIFRF3R4ohuJCvqhlzJxfYloDbJBe7ceAwU8JHoC1UDQM1+KHN1bclttgO+W3oDMFPOJXWYBZN90JNwU1cLdDzDtu4U5mgPSGbDtYVUy2iRw2FgqYNJXtbWDBALne0gaoeX91swXaqrQqa3b7fIjV2dFucihTEokX2bZCCAFNhmVtiHBc3en80gZOoaSMitjh0Zydh5zgUIsIdTKFOQMkkgJYhIvWpBYJouNoC32JjNRddYRBeKDHU966w9jHUtSQNQXCUpn3ShGk66BATCpSd7dVlgW57cRs2jloH9pgo9TEB8g322LHXYMhgkuu7rEyq79b9LVVAdHGxLYwkN9rin314FCo5N1PyHCBkDIdS0hv5dDw1SvNF9Ti9LDvvbj1DV1IQmgTKaZMY8N/djZoaDJio4XjHwONQ1ru/4eJRaBsZaetvYN8g5S78DdZ2DwrV3xBkwxmEOulOwYPzDiTphEoZYlWZ80oah2phGoLsYN9DigngCJeSF9c7IeUemOMyP+Dr4dxF9Ou88ZWhP5gZHZbNHuhOTDo0eILo6nOa30epRozX0536kkeY2NOUIuApEYjQ8ACIwLTXSNDbMwaA4YFzGimHtIms/Yav5qLb1uhviPvHNgI5hP1j1Z0q28I1iuj+ic5i81hoiP2c3FV1owcVwwZtd73sTwVatEf1UxdBqj89drZ+dRQZoKFidpjB7LgNfAKLQhQX+RfJ8wBtjMLp6ta621FysxUa9JCS4guxB5m2vX3n3ov6ROzWu03qEMsHobyBv5Ut6c55OWlz/XnFwCzc8cDI8rbhM100HLVf+Kuox/YlZzsYpl7rPr0AyUGAQJn6pM+vGODzzdw8Rl7d+RsZctEmDETVLds7tMkWJeX9gKAGdXaBLQlR81IDQDsW9Yj95M+bxzN0sLKBGl08+bIaglGrPqLNDkJvtJcoxBZ4nwMTU5xJLenqkFoW/m4vQnB4b3b7pQWKZQ4NrmtfQvAN//nt6ywq7tHn8s+fV4vffny6utQXdch9jl1QACGFuyGz80paBMX5YZHnpQh6+G1Nv+bjuDrj/w== \ No newline at end of file diff --git a/docs/base/Parser_architecture.drawio b/docs/base/Parser_architecture.drawio new file mode 100644 index 0000000000..f11d815a0a --- /dev/null +++ b/docs/base/Parser_architecture.drawio @@ -0,0 +1 @@ +3Vptb6M4EP41ke4+tAKMCfnYJrtd3d1K1UWnbe9L5YCToAWcM06b7K8/G2zAmLy15K3dqmuPjbGfeWbGY9MDw2T1QNFi/p2EOO45VrjqgVHPcWzH53+FYF0IHMcrBDMahbJPJRhHv7AUWlK6jEKcaR0ZITGLFrowIGmKA6bJEKXkTe82JbH+1gWaYUMwDlBsSn9EIZsXUt/pV/JvOJrN1Zttb1C0JEh1livJ5igkbzUR+NIDQ0oIK0rJaohjgZ3CpXju64bWcmIUp2yfB8g/kfcyD/8YQH+wSv5ajOHD9xsbFsO8ongpV3y3WDwimmEqp83WCgtKlmmIxXBWD9y/zSOGxwsUiNY3rnwum7Mk5jWbF6dRHA9JTGj+LJhOp04QcHnGKPmJay2hN/Ggx1vMBck1vmLK8Komkgt8wCTBjK55F9nqQAl2yTZZf6t0N5CieU1tQMqQZMusHLkClBckpofg65n4BijESRQ8xohTll4t1gMdagBMqG14Uqz7BtZDtBiiOFjGiJHrRdq1d7Padk4KtW9APcZsvLxaiCG4NDYDk80GrjgN70SM47UgRlkWBTqUIcrmOeyiwsGh6yehg1uoqs9SJXlltNJqa1nTlXe4dvAqYk9qDrz8XE2B16qXiop650aNZmRJA7yHE2CIzjDbg8I41DYAJkNqDGgjgJJRzJ1M9KpvG9pYId/wSCK+tipy+ToBS3tWQxQrl0/Vw3xjINhvMNlqDFQgYwzEiYTWtW4L0SHbPGHPgrpTArDB+WLEygJKTPcyir9Xa48u+y82/HP8Elt49PLr2425W3l6/ndIkgSlYadeJ0TYn7by2gt8PJl243WAfUav0wqwuV35mNPpynlUDuO55kranUfN0fUP8nTdep1tBL4Qp+MOrFvLHVQ/DZN2Bree+z435FoNajf9WUduyG24O+VHN87LAdv6H8dtmbuljkK5rdG7iutHDuVW7ySh3L9aowJ1o9L55oFb23mfTYGGfQL3ozalxYoOiD44FtGtW+csm9ZD4s4HmA6vk+kQbmM6/ADTvQ0bo46jh9OMeDuiB3D900cPtUk8glWdJ3ycKBP0rtKooLU1fPTfb1RuI2MD8NLCh60yqC1MZzRC6UzUDkzprJH419E588DVoXQktPXErYUj9rHyNsWJGnIBxYjhzAQQr5gOlG6xKUlxAz0pQnE0S4WH4cBhLr8XgEUBiu9kQxKF4UbN6N6jCyXADSlGTQluixKamUh3SjCz50+vBOg28i/33Eowz00/vRJcv2kJpjtqU8Lx3JGZ8X5+JTTvHv1zW4KZjZVK8GIBerZAqaYN77+luI6+Dwqk78R2ZjZBv/Ep8l8+Dau19LsoChCtKUnZzRQlUbwuHk9ISrIcea1Lll/0iw7WYlW9l5dmxf+w+UkB5CsX0vzCvKwpJGCOBZeMRFlMDIq1Qw7grr522Vfp/13DONUwBeBlS9VQAF02lFsZLqlzVHTIWSrkuWEIiZ1XKztQw6iNjWitzaHg7T6rLJvKBVbkhoLeZc88DVPDrGtr92ElL+hejV57RNK+tY3Tv5TPau9vwp9XSx3UhTozZD+DQgXzuUEV5Fd8+6xeqXmvdHavpAa++D0+HDR3Nmfe4zsnyY4oYTx9JYKpPIx3FRu9Rup57nxJQXeNWIKmRZ8bS3AlFg0uDjnXRK5/jyY81qCA9fojFa4mVEWqz3PZ7bZ9xXTSy27H/JzAwLV2sDqJSfAzPxRV36naXlH9GokX58hv3DHU0dyE/9FuHbade+48H1UsPeSA1FYH+B1/FmNcBOx9+OnuGGjD4efuo82e3HnWuld7TvDlfw== \ No newline at end of file diff --git a/docs/base/Project Structure.drawio b/docs/base/Project Structure.drawio new file mode 100644 index 0000000000..84ce243d80 --- /dev/null +++ b/docs/base/Project Structure.drawio @@ -0,0 +1 @@ +7Vtbd5s4EP41fkwO4mb8GDt2ut1sT7rZNu3THhlkow0gFpTazq+vBBKIS7FxLk5c+yEHDdJImvk+zUgoA2MSrq8SGPt/EQ8FA13z1gPjcqDrlj1if7lgkwsMzcoFywR7uQiUglv8iIRQE9IH7KG0UpESElAcV4UuiSLk0ooMJglZVastSFDtNYZL1BDcujBoSu+wR/1c6ujDUv4B4aUvewZywiGUlcVMUh96ZKWIjOnAmCSE0PwpXE9QwG0n7XL3x+YuuL63rz5+Tv+HX8Z//vPp61mubNanSTGFBEV0b9X+jy/xau7R+b+3urei0MefLs+A0P0DBg/CYGKydCMtmJCHyENcizYwxisfU3QbQ5e/XTHIMJlPw4CVAHtc4CCYkIAkrByRiFUa7zh6ORKUULRWfCdmc4VIiGiyYVXEW0NCTCATWKK8Kv1cOM9XfKyPhPOhwNay0F3ajz0IE7ab8/F+Mfvw1fzvW3wz+7zSri7mH8/OgL7dnCjyLjiuSwMxieAN0PLiDPN+M3sXqMsKNCH3BY65vavOQR7DvugKBXOympaCcSZgL7iFMSNIpg8mVI6GxCiSMmUAHkz9rIO6ewe64UHkLNxiYMob23XQfNHb+yl5SFzUYWFbLCEwWSLaUU+4nRukE0sKVoAtGiUogBT/qC4gbVgR6m4IZnMrcalXcalrRlVFPknRSmVsX0W5FRqKMugWc9wJza2Lg3F8YGYgTDbfeOHcksXvovescLlWa15uZGmNqdKMlb4rb8pGvCDbHIw4rc7UdiSOfTjimGB07hgVyBtDbT/utOjSh/ZL0afLkgp9JiQMYeQx4Q1MUpQ06JSucBjAjEcLElGJfo4mGOAlQ/Sly+DAWhpjifwL8YISHopdHwfeNdyQB+5kBn/3XpbGPknwI1MLZbDO2CHYqtuVGre8peg6QSmrcyORCArRNUypqOOSIIBxiufZgHmVkFkXR2NCKQmlogq/tywG/RkjrTd79hyEp6fZ/JDXSQq5cNu1hdtsZiagNTOpIbSFM3+zJBlGS2bmojtQixNF920cVbsDhlPtDwYMWxGkaMw9lb5EUDGPMKg8NTgoUUnvFZYOHlXkjk6JKl3R5yDpmFNjx1A715RfTeHOyVlNrW6/WHRptah1xDxSWVRwqg+PgEoiJdV7qzTadVdzwORMH9Zo5DwLjUytRqOXS9JaLT88Yho9Qzgavq9wpL/9cKTXckNz7x1OjTmmZp2P1N+r8kj71WYnPW1ynnWTc9idjKH9ljuZriNGBfIXccwE0yg3Ycm1E/pfcovP3s+cyXQyeX12mFW4AmdHuO7HDr3GjoItb3GfP9qeWPX6sNT0bCcpt39F2lRdsc2GtvZrl+36zajVUM4RZ6BP3sj1PKZ/NwkoOFwCajijc7nJkqmjs2cOaoxqOSjYbffG8AM3SrWYV0g7xtzox+iXG5uV+uwhH8GzrnjNT+k8BSbRKQN+1xlwLcYbLbcMgHb0GXDXaqcgfrp2UUzxCfTvG/TNs4UT6GtntQrorwIyh7zdCf37oH/huMhtRf/csUxLe3X0W1YVjqfPt0qS01zz81OP042G3rhfLPR23Hv23Lbsgx/2gd/zsK8d90d4Ga7rgtoO4NznO9O+G/t+RNh6i7TlMlznaneo23BDUCXkvvv0Nl3m635oBc2LPyxwpFnkcO/5Jf46ndhaRqtngFUsCo613DjfGllC7HkZc9oOHavEe+IS/KTb66O2tbb/OSQrlv+lkPuz/FcPY/oT \ No newline at end of file diff --git a/docs/base/Storage_architecture.drawio b/docs/base/Storage_architecture.drawio new file mode 100644 index 0000000000..baa6b6a772 --- /dev/null +++ b/docs/base/Storage_architecture.drawio @@ -0,0 +1 @@ +1VVNc9MwEP01PsI4lh2cI0mTMkyBQNopcGEUax1rKkseWW4cfj2SLH/FoaXMcOBkvbfSarXvSfbQKq+vJS6yD4IA8wKf1B668oJg5qNYfwxzapgoQA1xkJS4ST2xoz+hXenYihIoRxOVEEzRYkwmgnNI1IjDUorjeFoq2HjXAh9gQuwSzKbsPSUqa9g48nv+HdBD1u48810kx+1kR5QZJuI4yIrWHlpJIVQzyusVMNO8ti/Nus1vol1hErj6kwWIV8tNLRfJ6cYv+Kf72wBfv3JZHjGr3IF3SkjTk6ZmdWobocsvzLDK2Q1NgVGu0bIASXNQIHWEOXrbc0sti8KaM/GZxYzhoqR7m9bXjISkkiV9hC9QNupbVlScAHGoa50FSoqHTgyTNKWMrQQT0laKSAQxCbuZg0gc7NF8biLNTqHJN+1j2xSQCupzwbTTQejjyZOe4qIodBo7ky8cPPaO6XyRDdzSugg7kx66zL2OeuCkvCzrm0Lh9fs7cbvmmD38OH7/PAsvyDrREzh5a+6HRqIArhuRqZy5jkJN1VfT79eRQ98sitHc4avayWHBaQAG8lvu5ero0jbUHNiuJ7jMrBNmT4lVikom8LzTgYzu+1TSgWbRE5JJYFhp144fnAs6uh22guqKO8eE/tgxKDizQnMet2p4q88SocU4UeCfJVJYHkBNEllbdcf+e6ehidO2DPOPVfk/PyAY4jS5ZNF5EsM+/fcPSKficy9I+PIXRMP+p9PYoP91o/Uv \ No newline at end of file diff --git a/docs/base/Ui architecture.drawio b/docs/base/Ui architecture.drawio new file mode 100644 index 0000000000..668ad3c4e8 --- /dev/null +++ b/docs/base/Ui architecture.drawio @@ -0,0 +1 @@ +5Zxdk6o2GMc/jZfdkYTwculxt9vpdDvbOmd6ztWZLAmaKRAbcXX76QsSFBI8eigS0SvJAwT450eelzCO4DTePgu8XLxwQqMRGJPtCD6OALAs18t+cstHYbEhKgxzwYg86GCYsX+pNI6ldc0IXdUOTDmPUrasGwOeJDRIazYsBN/UDwt5VL/qEs+pZpgFONKtfzGSLgqrB9yD/RfK5ovyypbjF3tiXB4sn2S1wIRvKib4NIJTwXlabMXbKY1y8UpdivN+PrJ3f2OCJuk5J/DPzPm2IL/6yPO38W/LGXp++Un28o6jtXzgz0zebvpRaiD4OiE072Y8gp82C5bS2RIH+d5NNuqZbZHGUdayss2QRdGUR1zszoVhSJ0gyOyrVPC/aWUPcf23cd6h/iDlXVGR0m3FJB/smfKYpuIjO0TuBb4UuaTMle3NYcwsJG2LynhBacMSk/m+64OS2YYU8weE9TRhXyOc/L5edaouwdQLG9V1Ao++hd2oayviOqbF9TVxp3g5xVGwjnDKxWS5HL7Kzti0yuUUXJF5EmBCYxbkLCf0NoRG0LjQ+iw8ISTzpeso0yCOcUIGKPNeV6kz9I3rDDSd/6Qxf6dDl9pyFKmBcamhJvUTYenQhbYt+9qEtvVAQ7AkzbwhTQgWA9b66qYPpE/Ty+UrFisqOtU3DENwJGZ23hzkXGZ+Nh/WWc6pgONmxL6CoMPVxK4F0Tcj9RUE0noyOKPpbD1YidV0u1eJF+CPUDxPto/fGFpT+M+7eHlrqGNosmbucJIXhLJWEOHVigV1JemWpV8q21/zAXhAsvW4leOxa3yUjSS7+S/VRnEWQGX7cN6uVZ54zKMWd02JVpTSRmvF1yKgZ0QGKRZzmn7vwOaxroxl01CWNkGz6YK91++3aXzlFV55Fp1UvfyRyk3ZRfGc8qxqeUvpCCgxsG0rHRU6aB3tcNs/dnsC9dyiFwJ7AMkzyQdQ+SijsB/mQy0Rel6vfOgJ0a3wYY2vChCvK0D8ficQPZEzCkiza7NO+LUOsfKH4L5U+hBqSR9UO7L6pU/PbVvTdyDuaxW4lvQ9IEP8lVH7dQMI1WxHDbHPBdBWM1TV0V4YQD33bw9gl9OfZQo/dwj4IWXackBL/NSOkNrRhfHTqyFXiN/4wT2VWHZJoDMIAtXlPLelB7aREv85/RKoF4muksA+AUSDANBSuGlbwbCB0pHlPvTrg/XvKq4SwZPVtS4ZLD86GxaDraNAlcGeq2gN35y0R7CWh1hdItgjf3AI/NnIr2EDVd95dhrsKB2pk+ml+etwIaFT/sam+AND4A9aCjaoJX/APeHML82fXiaeBbulbw3D/7dMGATNy4TQgT4ke4a0NcEGis5eJgR9fmHQLG+HRdZbKXPp7/d3yDT2gqsOpm2dAaqRUt8Bjl5oLUfqgGD2yqV16OrvacITqlAlTThi8yQnN+MgmzPgp/wFZgGOJnJHzAjJL9M4YdSnlC5mAO9IXFqhBjRQo45udxOAXma8ZfmPrYkbk18vs92T/A3+r1/59RrTPcnvmZZfr6/ckfyo4SOxXuUvO74P+aFSzt6XiIzJr6fWNyy/uppgnn5wz/Ibn/uBntjfk/ymIx+gJ/73JL/puB/cVdarfkpjPOsFd5X1QqWGCy/nerPm4Q8cihLR4W8w4NN/ \ No newline at end of file diff --git a/docs/base/Ui_architecture_1.drawio b/docs/base/Ui_architecture_1.drawio new file mode 100644 index 0000000000..93ca150a17 --- /dev/null +++ b/docs/base/Ui_architecture_1.drawio @@ -0,0 +1 @@ +3VlRd5owFP41PnYHCCA8Wtu6s6093Txd7V56IgmSUyA2xIr79QMJAgmuq0OtPceH5EtyQ7775d4L9sAwSkcMzoNrinDYMzSU9sBFzzB00zB6+U9DqwKxDLsAZowgMakCxuQ3FqAm0AVBOGlM5JSGnMyboEfjGHu8gUHG6LI5zadhc9c5nGEFGHswVNF7gnhQoI7Rr/DPmMyCcmfddouRCJaTxUmSACK6rEHgsgeGjFJetKJ0iMOcvJKXYt3VltHNgzEc839ZQO+I/RigL67luGn0bT62RtdnwsoLDBfiwHdEPC5flRwwuogRzs1oPXC+DAjH4zn08tFl5vUMC3gUZj09a/okDIc0pGy9Fvg+tj0vwxPO6BOujaC+O9Vyg+pByqfCjOO0BomDjTCNMGerbIoYNVxBslCZ2Rf9ZeUz3RJYUPMXEBgUMpltTFdMZg1B5huIdRRib0MY3yySTtlFEDt+K7u25+Cp3w27lkSudmxyXYXcycOvIY0iGKNT5Bc0CbbMYxNcRt8mw4P5/BTZlcgFRyfXaiP3FrIEs45jr29sib321Lbs/aj3oOEhML77bDRILx6JtcDg+YVdT88MhV+FVhyjQV4dZD0vhElCvCaTOCV8Ums/1NoXqfDGurMSnW3azohlq0m5Iu881DuVsXWvtLbVLwldMA+/nngwkuoaDtkM89dKAdXLNS+2ObHEGA4hJy/NPds8K3a4pSQ7WZXANUlE5SUpTRTnFqvqVY5sSK4EHKdpqOBBMbQW2ubYu2sP7Ed7Wofa0/emvTJtnLr4nK7E50ohbs/iM7sTn9ad+PTDiM99i9QUjb4X7VnWjtoDsiH9sNpTX3g60d5/Jt2G9vaXdMtsdWLi22hEfm1+q/hMQ07f/U+SjvcsP11NvGMPxnHnJbXntZfUwAYuQPv5nAGAIPNoJbXeZWrJpNFdZVMYO0Bto97wvwrxnVxxYLlNKRk7XnEgxwrzsPml/G5cU2DpukqC2f3iTdE172lMYyypSkAwJLM4V24mjCxmgPP8thIPhgMxEBGE8m1aA0YzpHQQAUBfigC2GgGMFtXI3t0lADwHyVi7/zFEyZX/8+krvInTScs79ftmX6G6xSHb429/i9aPxb6a3D4y+7b8OnZk9tXc94HZN+Wv/e6R2Ve/ln5k9s2DRZ6sW/35WGTp6i9ccPkH \ No newline at end of file diff --git a/docs/base/addModuleCommand_activity.drawio b/docs/base/addModuleCommand_activity.drawio new file mode 100644 index 0000000000..4793ca96a5 --- /dev/null +++ b/docs/base/addModuleCommand_activity.drawio @@ -0,0 +1 @@ +3Vtbc6s2EP41fkyGu/Fjbj1pe04nnZxO20cZZFuNQB4hYju/vhIIg0C2ldjGl0wmg5bV7dtPq9WKDNyHZPmNgvnsB4khHjhWvBy4jwPHsT3HGYhfK16VEt8JSsGUolgq1YJX9AGl0JLSHMUwUxQZIZihuSqMSJrCiCkyQClZqGoTgtVe52AKO4LXCOCu9G8Us1kpDZ1hLX+GaDqreraDUfkmAZWynEk2AzFZNETu08B9oISw8ilZPkAswKtwKev9suHtemAUpsykQrr4efPz+bc/FmlKXmj+AtD47sYrW3kHOJcTloNlqwoBGHNAZJFQNiNTkgL8VEvvKcnTGIpuLF6qdb4TMudCmwv/g4ytpHVBzggXzViC5dvuVOTsMpLTCG4Zf0UJQKeQbdHzSz0xl0YHEqhvkCSQ0RVXoBADht5V4wPJoelab131hSA+ZMeSfHdtt6wi2W6HltpEOVBZqzYWf2gMoxYVJvyEOe3d5uQ0nIvHPMF3ESOUw/8OKUOc8t/BGOIXkiGGSMpVxoQxkjQU7jCaihdM2LVpQJIzjFL4sF6EgggThPEDwaIL3rFrFT/brC26gcut9pFvnQrXCmdZXNRLNJB+ZqasTmuzRRVbfBb44YWvI99wHQWHXkd7oe53UP8rg1SMbwmjnPF9Q2wMSQLSuGOOGmyB3GKGGHydgwKkBd/KVGBbVJ5MJk4UcXnGKHmDjTdxMA784EAk91vOxO+y3K52lybNg2OxfHThLA8MWR6eFcuD3ajTGUnGebabyCrrT0ProUprx+vSOtSwur2VHgxf22DXPGtah4a0rna/M+F1uNF7pwxS4btfYQIzVsg4WmKGb1CE1iTOOeZtG10A9Vse3Q1O7dGrePViuV9xejf5nbMifzXua/XqniZY6derd4PDC2O2Y8ps77yY7ez061MKYuHIQTRD8J3DKxIz9Jo8u+/7/Xn24O3jefURTSl+Ct/hHf3z19/HN10rnI7+LWZ+cT143fWgnflp2W+QUbtkvx64p/brJofQNL4TuV9eijDIMhSpuMIlYv80nv8VBL/1ZelxKfleFFZVIeWjX1cShUYtUayrFaWq3tcJrzmtavnuGrr/hsV8jcUq2Z4pUM9VU3MdJpTz7qRAuw21cnyjkVkulVserBpqc6GQbRlwqB+w6bjCoaLPH8oRHDSx6xiEi9fBel1AfwG094cqK4LhF2nvtiKJUTtCOBLtvdE50l6TmvHvqyjRikgRRqKsVOFN+Y+dZcE3OqYuBCCvMaIiINXcbyQojsv4B2boA4yLpgStJai8Xf9e9MXb4iFPVkY/W8N98x3XbjHJ1ey4tqthsnOsLbfyNaoVsjo5c10GcCzVAL7OAHavBtBkafx7iDN4DXi7LcI7mtSB1yvcmhj+muD2VMevSUIeC27tRn5O3yB89qS6+QBqGsH0cFDdNsgG6j+qbbVw5xkoEzMLxEnBi7W3L25TyxxOVo6M/2GMonF55bpP8mbzWXbT6XcD/TWWM07eDDU3Uv0mbwyu/C5rSbiGS8I/5ZIwuAv5YurmNLRupW7CHlM3m427g9UYo3kGP4vvQdDybn0Fr3XCoYHXcHgcvPRH4e4N6dcBO+rXWK0PVSyri1zQp//UfI7l31e3Dmd3WtmPt63TylDzLdyoz3DOhLRnl6nq94ZiQ+DXT6bKDVpXVZZ1azV+Wg0a561azYaGn77um7cK1DxU73krrYE1dxRndYDcy+O4bQsc77zOi/UH8qVx6n8zcJ/+Bw== \ No newline at end of file diff --git a/docs/base/addModuleCommand_finalState.drawio b/docs/base/addModuleCommand_finalState.drawio new file mode 100644 index 0000000000..9344c8150f --- /dev/null +++ b/docs/base/addModuleCommand_finalState.drawio @@ -0,0 +1 @@ +7Vpbc6M2FP41fnQGxMXwGNu5TGY7k5l0u92+KSBADUauELG9v75HIO7KxpvFaTprXiwdiSPp+76jG55Zq83+huNt8hsLSTpDRrifWesZQshwEfxIy6GyLGpDzGlYmczW8EC/EWU0lLWgIcl7FQVjqaDbvjFgWUYC0bNhztmuXy1iab/VLY7JyPAQ4HRs/UJDkVRWDy1a+y2hcVK3bLp+VbLBdWU1kjzBIdt1TNbVzFpxxkSV2uxXJJXg1bhU712/UNp0jJNMHPNC4ifzG3/ueld3/vzpKf6W3eK58vKM00INWHVWHGoEOCuykEgnxsxa7hIqyMMWB7J0B5yDLRGbFHImJHPB2VODlAWWcTfrNgkXZN8xqW7fELYhgh+giir1FIKHGmOV37WEuLayJR0ykKOMWIkgbly3OEFCQfUDsCENbG4KzS4jBsPs4uf+U7C6YJ6X+r6ECgDJvi2EVCx/r2mGZeMPAgtSu4QeVl6rOiOCAEXRZwGnNM4gHQDmhINBYk1B1JeqYEPDUL6+5AS6hB9LV5LeLaOZKNFyljNnLX0VglXdLl3LnqgotY1p6LVsp8evPaa3obxLr3sqdq0RuyUf+YdB3kQTIb8YRBZyRtA7usA6FfLOT8eViXRxtSp4CdMPRlY79Zlvmfo6jCFJcUTTdMVSxkvvVhRFKAiaNzslofvoOu5EHDt9ji1PE16GhmTrVCSb4/iqCSkaKqzLz7RDU3EER29anoZRNeAoxMSLtBy5gUceo2k4aqa3Og7tcRya1rtyZB/F0T3hOct+XZ58TSy9K0/oZZ7UjBk0ULSTomWUz3ievMewWuEUtvEF8AZtw5pnZLBrlVQyDvSBLZMwDon/7jwKW9+tTGZMkCPIVzTbmuVTsG1nlU1JJNvLwRXN4t9l2XruvkU/xAo8w9DpZ2n4TlkiPfRnb3im0ZVtDHS1ODb+nVPpyp1UV59YHMN2CBlrkhIhZXQWzhTCcYZHI51wdIu7fbIJaTGpcK5pSm5xBlvms3pOrp5mmfrv1ONNqp7LMPwsaJqfpTP5iuUOpONpJh7dof100vEnlU61BfoDeAsx7HzOCppaQcj/aAqqZ7/pJp9KRCu22cASdpbQ1BIy0RES0l0Mn05CuquNAaskCy/lhwnIBSnOcxr0eXwF8sgLiP7W6NFzbEdCTvZU/DmrDtoy/VWmLxyVW+87ReuDyrxIR84KHpDvjLm+ziFh70vKmLVXLhVrGycpFvS5//1Fx5Rq4V5enHZEMTyiD45I1XjUSy3dIz/WwM/wtllgHhMx8lPKphn0TyhJd7D/fyvpowhkoBBk2BeuO4lIdK6m0wkXyHz+Gyhcrr78ldwVdwZytB/wxvd01UL0ieFQnqN+0du65rbkPW7rtGShc0y/U0zb/oXffRbTxPcrbt8c65Bt/whQVW//TmFd/Qs= \ No newline at end of file diff --git a/docs/base/addModuleCommand_initialState.drawio b/docs/base/addModuleCommand_initialState.drawio new file mode 100644 index 0000000000..21e960d857 --- /dev/null +++ b/docs/base/addModuleCommand_initialState.drawio @@ -0,0 +1 @@ +7Vpdb5swFP01eUwFGAh5TNOu27RJk6p9PbrYAasEZ8YsyX79bDBgwPkoTbpUXV5iX9sXc8658b1WRmC+3NwxuIo/U4STkWOhzQjcjBzHsXxHfEnLtrRMKkPECCpNdmO4J3+wMlrKmhOEs9ZETmnCyaptDGma4pC3bJAxum5PW9Ck/dQVjHDPcB/CpG/9ThCPS2vgTBr7e0yiuHqy7U/LkSWsJqs3yWKI6FozgdsRmDNKedlabuY4keBVuJTr3u0YrTfGcMqPWRBP4/HddOwHtx+n48fH6E/6Ho6Vl98wydULq83ybYUAo3mKsHRijcD1OiYc369gKEfXgnNhi/kyET1bNDPO6GONFBCW/jarZ2LG8UYzqW3fYbrEnG3FFDUaKAS3Fcaqv24I8V1lizUyHE8ZoRJBVLtucBINBdUTYHMMsPmJeOz1gorX1PHzf+W0Ghhnhb5nYoKAZNMMilYkvz+khBMoH3/PIceVU7HH0m85q0eRwJG3eYAJiVLRDgXqmAmDRJsIWc/UwJIgJJdfMyw2BR8KV5LgFSUpL/DyrkfejfSVc1puvHAtd6Li1LVOQzBwvRbDbp/gmnSdYP9c/IIevwUf2cUgbzsnQn7SiS3H60HvmULrXMh7z44s2zFF1jxnBUxPjKzmx88e8uOnMeZIihckSeY0oazwDhaLhROG9UptBPkPvuefhuOaU8UxCAzhZRlIBuci2d9Jcl4zAWYzhEQ+kScCl+USpkjjLD+CsEGnVTfEOoQhiIOFkTA/DPDD4kSE2e2gdKYGwsBLEjY5irCSrW/iFxBBLoB5K3x1E5R/z1dwbIB95STJ3gxRrndpRFWRvi8BxymayUpGJhUJzDIStsHuQos3hP+QPF15qvdTsSbbNxu9s606qXgbbZHs/lT+i06zrOhV67oHWhBi84H2EHgS/T00ZjRnIT6cGnDIIswPny4YtSq7vigOpDiVjeEEcvK7XQ+ahKCe8EWmcY3mPLetOdfqaKl8b7VKr9+6jqZtR6Bb3ZTA9BwVuqxf+xlSPaJWHCpVWxdqLVuzVJ8uuUbcurQ1pe8Q93Cp+kdKdXJRUnUmPaleWdqn4/BY4QLnQAScW7imav2/cJ8l3OCyhNs514HtDZOqSAhainf2u90hXKEkuNWmqcJ+9/b9zvZda+8uXbB3vmiUOzhtFPXvREw55VfyOrLJSEb5oXAZXrLZbv8e5YUzS/covr5gltH0dXB2Dp7+fQWw+8arX1t/ohDht1NY9y5CTBfDL8uW6erqubnEwFP+hLXXwfO+UumFHPhdXXhDz/uOH3tvwnvuPNV0y/b6tXWhkrHcK98fpprez5LB17m1Yrrh+6+V82jF9qZXU/0zOY1uDvkdrCHRbf5XUE5v/p0Bbv8C \ No newline at end of file diff --git a/docs/base/addModuleCommand_sequence.drawio b/docs/base/addModuleCommand_sequence.drawio new file mode 100644 index 0000000000..c9f36ed18b --- /dev/null +++ b/docs/base/addModuleCommand_sequence.drawio @@ -0,0 +1 @@ +7V1dc6M2F/41mcl7sQxISMDlJmnSzmSn7X5195IYOWYWGxfwJumvf4URWF/YgAFjtzt7YQQRcJ6jo+d8SFzB2+XrQ+KvFx/igERXwAxer+DdFQCWDcBV/t8M3ooW28VFw3MSBuyiXcOn8B/CGk3WugkDkgoXZnEcZeFabJzFqxWZZUKbnyTxi3jZPI7Eu679Z6I0fJr5kdr6Vxhki6LVBc6u/VcSPi/KO1vYK84s/fJi9ibpwg/iF64J/nIFb5M4zopfy9dbEuXCK+VS/N19zdnqwRKyypr8we9kcbf4+yGefX78cJM8pn/CxHnnwaKbn360YW8crzP2wNlbKQX67Ov852YZ3Sf+kv68eVmEGfm09md5+wsFn7YtsmVEjyz6cx5G0W0cxcm2Azh3Z2Q2o+1plsQ/CHfmyUU2MukZ9X3YK/4kSUZeuSb2fg8kXpIseaOXsLNM9EzVLIdJ/mUHnOOxtgUHGiqVzWfK8lz1vJMn/cFE2kK8rnNJ4oWmIF9oa+SLkCpfCIeSb4nmZcjXxoJ8EdDI19Tor2X3IF+42tzcvybe7O3RXK9+/+sz8B/eWYp4r+D790FA7fwmomJYLv1VsE/cj+GcROEql/iaJCF9KpILLmLNf+zabqgFz3zalp83t8dR5K/T8Gnbbd6SkNkmScOf5CNJi4li2xpvVgEJ2FFlZc0KrdJua3ANfOLOtbjimUue5v3g6ojjBiAFVgtpYHUtNNCwsVSrT3H9Ep4zkoi4ga1D0gVPEON+kATYNVA3MN2hwASqDVRwJKvgfU6G6NEs8tM0nInmjryG2bf8t2E5Hjv+novesDzMju9eGRbbgzfugMO+aFvR9/q2/XPP9cqGoj8T4LJh1+H26I0/krusxY4EEn/L/OSZZPuU39RDzCGoA7BsS0jkZ1RzRaapAZXd4Y84pI9caZBle4bH/3MEdfKks1DsP403yYywLnmuJ98F2YbJdeO6IjMCwHDoVFL9s8XbFDJUbkNVyH/jLlvnF6R73pWOllJC5Z1NYLiSyhfd7gZAhckRY0KduOjPMPAzUk5dAbn+nzJOqBnIxJEhmpNVvDWAvO1hTbT351U+vKiCbo1gblRC6ke8ZyeWYRBEdcxDtHw9GCpLmnMsU2OngEbNwVBUDeBWZoqJNfDTxVYulg6Wcj4AvNF5R40MdnirYxmmZXWxOikdCFn5RPGarMq2+zB/+coAFqbTBKLptIHT2nTWQl+M/KJpbv4JPqb/bKLoW4i/f3yy48Xf7xqbP1trOE9lD2WnAmBJAZuaPOBKHclOXY1R683kuCPqN4S96Devu4LqUrrSWnWbDJZa9T6otiXPUub7gwPDOel0jySf2aPCBd00HCJsUFdambV3XY+q8FDjHLbmnRVTlFkiPFafRVtMHbr/bHEDZRXZp8TdZAVrrLhQYrWi4lquZ2DMncbj6jHoQY93/pOgdmZ7BiDaeXFYWFanYdFdkZ3jrPPpFBkbJv8P9sMxID5AVoZWVVtR1RX1WB7D1UU7MzJHrAwRp014TF8Gon8nDkr0C6JTI6F6lZuUJL+t1hs1DXA5QADJDmkyBe6oMKh5rufED8jX7fHF4iBHWWyNYRoVB1vlMilZkpQKqykUzUWc5LF7fxfUZ+FA2i+6uUJ3eV+bLGbxfasniXuSP2WpEteleIeTeLuw1gH2aIr0ER0Re9/Sx8rH+s5aTHdcAtnUE7KnRyAxHyAXo/TIdKhw6z2WpnwSSfYDQulJWwfi+2actmrY26s3p5J0AMsqCTqFrhqp5L6c9mGVnJhzLlcHYNNwO0aSkESoUUM/ZkS981rpXfto6s5hdwWTizFobXMbpQm4QWABW/TrPcfrdQx01e3pR1P3+vXY7OjXI5ticKCvgV17pEZTw/RrnrP8xAjctcDkmriZ06ZyUM78aMrJrFG5HFLLYhgGDYR9pi6MreTf1ESxPSoIaozr8kGQ/UjgGCeGwdaWiBXFE1+LUgoqUBmR86kXm88J1ld0Bo73ZPZW0SmPLtXE6Uv/7ONx1bJfNUCggKgafx7AOMkW8XO88iMewukXYVZFsmWllWa20SCB+6gN1yKhDjDyStU804WQZfP0FGdZvFSoJ+1ryxUrXvwUxbMf5WVscYV7GKDIfyLRjT/78bzFVTKetWAc9JRq6mH3SLiGryEtlK2r5GpUYiTKZ6kz3enH4ihltFASPNBE8XSDcbB1BEBN6PxboIBKTkezbGZUMMqb7QOD43xdcDnRDCRGcCxd7fiYgkYqGWBU+yFP3lzvUjgX4G1iScs9HcXWkrHhXJ3RglxSXsHB5fFwQS6pBtc0vF3Df7mHvUEuKdkAPcORemnKcGTvHiGpo4EpDtaY8u0Csi9ZGKWKsp+P+0gsOj07uhmDqjn0e5qcscyTmi42ModabIQb5IPGJkrjYOFYIhb41JzVnqD7ME5URU5f2ZZ2Lh8VjAk6EKcBo6r/OhUUuN1CjL0VGfkCRoE5uag1caqtcTf7XQl5MPENGvKh0sZPhg+ZYtJP9KJw12LeKsNX19HJk+COyp78cu395/hLSpLrZbWa8QrcSqVet3wJHn0Ck12ckCDMzt+jszxxuw+kiejaOsszmD/nTHASOA05QrpcrgaKPjau0EPRa1me5D1D74hJwNiZ/XIeQL3OAwftu9NkKV39DHK6eUBcjoRRHsjoZvsd2fajydn+doV3nWNDlOHYIsMx2xedtooNqSPA8/odAb0xoZqRcqoRAC1kmHxVqhjSxF3zYMpoGDkR5qiMnd7uA8dW7uOkOOQIz/kzGCAtDtZt+DRu1YejRqR50nj2EocYSNkupHFXRy06c1WSr4iZi4vekdyW04c/tIOZaPJhT5xbcvZdqEoPaqQ3mLPvNliEPhnpyXbW1Yz3caUHzkh6CExNeg3cvRZLf6rC87ImvH0hesWxmMvCrRwHoAvFEvhkLYY839qb0ecJ1z5iNhG+ZSG0b68u4OoDU63LkDDFR+gZmuPsz+VIGzGw2ttBt+Zyh94nZ+e1i267Z7aP3R7r2PS72q5r5Hb6nj315K3ajW3oSDAQPwy7DTN59nWccb0cV1PtgW5+m+fwsMBt3kVaXEK7QnfKwDg3vg3EWL22tGzUXeg8DV9kIGyj5ReHgFRBgDQbNli6PYWHQ0CTtkY3YY5A4Wpe5Zu5XyAS4lAApgaIoXz9feVRE6yyVGSqkXzzKktXp/GqnHvZRFsraNXJCtOPJPN/THtnjONQkPcf1SSEhtooRguCZjnTEb6a6KpZ8IhtvnR7JB9TGaBwv54C5PU25GS0Udrxk7oz+f4CyjZzrf0xFxklWat2nNLv2ty3Qya/EQtv9eWQaTFU52P6Kp/4UoLr0l5Ne2+r4wyWJyvTqefnfjeWwQ5nstpXfwv+t2C7RNMFj3F525quplXfE/R4qamCQN3nvaqhcw0glfC2iCaJfR2d2q65j7wTE4uzDmqrGiTFL4GzQs0ifC1nlZWkN+OjxirOZD+3o3CQV6ZCje8wKmvVLIWjY/ehgmLiu00eNygkQ6b73NRQmVo9GKojd8yMXOzhXjkRsMPXAvh8j7zcCrl9ZXwOT8unCxzvnUZtj/pmXadRuTbDsgwp8Nwb6bflpx5+IrX6zV2etT98yrTHnsJ2iBwD8duid3VnETKwW/stIIhtw7XVPbV6zzV6hnxjNIKej/nVGVte8ep12tat+Yc0mjhM03aEpPQE7prck5wRp7ePv9DD3Sdai8t3H7qFv/wf \ No newline at end of file diff --git a/docs/base/addModuleCommand_state2.drawio b/docs/base/addModuleCommand_state2.drawio new file mode 100644 index 0000000000..a362a6ea65 --- /dev/null +++ b/docs/base/addModuleCommand_state2.drawio @@ -0,0 +1 @@ +7Vlbb+MoFP41eczKBttxHtO002o1K41Uze72kRrioGKTxXiSzK9fsMH3tk6TdCJlXlpzgAN837lBJnCZ7O4F2qz/4piwCXDwbgJvJwDMQqD+asHeCAK3FMSC4lLUEDzSn8QIHSPNKSZZa6DknEm6aQsjnqYkki0ZEoJv28NWnLVX3aCY9ASPEWJ96T8Uy3UpDcGslj8QGq/tym4wL3sSZAebk2RrhPm2IYJ3E7gUnMvyK9ktCdPYWVzKeV9e6a02Jkgqx0xYz9fT+/k0CO/+nE9fXuKf6QOaGi0/EMvNgc1m5d4iIHieYqKVOBN4s11TSR43KNK9W0W5kq1lwlTLVZ+ZFPylQgoqSX+bdk0iJNk1RGbb94QnRIq9GmJ6Q4Pg3mJs2tuakMAzsnWDDOAbITJGEFeqa5zUh4HqANjAAGwBU8verLg6ZhO/4L+c245pVtj3Qg1QkOzqTvUV6/+PEkmivYWiWKCkMFhRqCMbPcmuojZdLlRO63GmgJVtYhCjcaq+I0UDEUqg4afKzhemI6EY6+k3gqhdoudClWZ8w2kqCwD9m4l/q3XlkpcnKVTrnRjH9ZzTMA5Cv0W512ccwAHGg3MRDnuEF1RlF4O8C06DPJx1nA34Pej9IV87F/L+0a7mgiFXW+aigAk4xunGeVYdDd2PRMMGY0BTvKKMLTlTTq61w9VqBaKomtnowcFz4Aen4bji1HAMw757uc4AyfBcJAevkpxXTMDFAmNVX+RM4ZIkKMUNzvIRhH0ofXVdrEMYRiRcDRIWRCF5Xp2IMLftlGA+QNhQPDwbYbNRhJVs/a0iIEZSJ7Ir4atbsfx6vsKxDvZdUpZdDVGef2lEWU9/qyInKV7oq40uKhjKMhq1we5CS3ZU/qt5+sM3rSfDmv6+3TUbe9tI1Wkak3TzyegvGvW0omXndRNaGJHhhPYc+hr9N2jMeC4i8n5pIJGIiXw/uxDcuur1jeKdEsfKBGFI0h/tC+KQIZgVvukyrrY532vbnOd0bKk8t5nVvNB1Fc3bimD3ulMC01NU2GV17CNMtV8UDwWV7/Rqwkk3T7tev3j+5HDijeLoGxEZT6+Xp18f9l+/5vQLqq8cYXI91VSv+h14DfhktobKqWOTtE24VYZ9amffkyVcWw64zWKgKg2Gy4GPJ+lgZJJ25xeVpUHnHQR6H8zS3QeVnqJXsrQyHrRvDDOPQeM3DJ039zVzjxtv39pqPyp3fNoSYz4qLH6hjDygFLMrior+7NKion0CfIesrzyOr5gnd+ix7XN5GvGjz+/sdVj2srZ/Kdmr864BbX15aPbqR/2OonNlL+/A7HXgeOAclb1Us/7hthxe//oN7/4H \ No newline at end of file diff --git a/docs/base/addModuleCommand_state6.drawio b/docs/base/addModuleCommand_state6.drawio new file mode 100644 index 0000000000..b6494429e6 --- /dev/null +++ b/docs/base/addModuleCommand_state6.drawio @@ -0,0 +1 @@ +7Vrfc9o4EP5reCRjS7Ywj0DSZDq9mc7kend9FLawNREWleUC/etPsuXfBtwEEmYoL7ZW1kreb/fTrswILta7R4E30V88IGwErGA3gvcjAICFgLpoyT6XTCw3F4SCBrnIrgTP9BcxQstIUxqQpPGg5JxJumkKfR7HxJcNGRaCb5uPrThrzrrBIekInn3MutJ/aSCjXOqBSSV/IjSMipltNM171rh42LxJEuGAb2si+DCCC8G5zO/WuwVh2niFXfJxnw70lgsTJJZDBkTTaPw4HSPv4fN0/PIS/oqf8Nho+YlZal7YLFbuCwsInsYB0UqsEZxvIyrJ8wb7unerMFeySK6ZatnqNpGCv5SWgkrSXWYxJxGS7Gois+xHwtdEir16xPR6xoL7wsamva0AQY6RRTUwgGuE2DhBWKqu7KRujKl+w2ygx2yIqWnnK65es24/9CPlRcc4yfx7ph5QJtlVneou1NdniSXR0UJxKPA6c1iRqSMbdUHFLGrR+UT5sA5myrCyCQxmNIzVva9gIEIJtPmp8vOZ6VjTINDD54KoVeJlpkojvuE0lpkB3fnIvde6UsnzN8lU65WYwHWs8yAOPLcBudNFHMAexNGlAIcdwDOokquxvA3OY3k4aQUbcDumd/ti7VKWd98cajboC7VFKjIzAcsE3bDIqtjQfg0b1hADGuIVZWzBmQpyrR2uVivg++XIWk+AlshF58HYQc3ogl43vGyrB2R4KZDRQZDTEgk4mwWBSjBSpuyyXuM4qGGWDgDsVdtXO8RagAWYeKtewJDvkeXqPICVO54BDEx7AOvjw4sBNhkEWI7WP4oBAyz1RnYjeLUzlo/HyxsaYN8kZcnNAOW41wZUEenHMnISBzNd2uikguEkoX7T2G3Tkh2V/2mc7lzT+m5Q0/f3u3pjXzRi9Ta1Qbr53ejPGtWwrFWMa29onk/6N7Sl52rrH4Ex4anwyenUQGIREnna+UnQKPW6TnEixSlkgjAs6c9mgdjnCGaGrzqNq3zOdZo+51gtX8rf24yqF3RtRdOmItgud3LDdBRlflm+9htctZsU95HKN3ozdNLep22nmzy/M504gzD6SkTC49vF6eNp/3CZ002ovnAckNvJpjrZb89pwDujNR2E1ifKyJOqU9gNgeVOrg0s0JdRdcH6wsPwhnGy+84A3hcnMGyrwkJSzHImvBm4nPaO9fFw9WV/fwqVYwXIyUKlMOGVVCrOxLtDyCp/oOGC0LLurNqvpX5oFXN8knL7eKeaBhzOl81xs196RnWiDPOldw+ZW2Rl0TiROFYiqfho4IlzEuGNvo25JAP4y4STM+p+aJBcP1x8j2BkpedLlCoah3/rvvsxeg0FEuh7ltUXO3Nr6mY9WkPznFv9zkONsFUGqzq4S419p9lt1zofNfYl8+eixjoxljR5ghrtOjHWePIKqLEwzUluLCrZK+FGiJrs16Yt93VsCMExtTZqqb00Gx7+LnMONkwkF5oHraXGrXMG8YcV3/IJArUSRrcnYTwTK6pm9TeW3PeqPwPBh/8B \ No newline at end of file diff --git a/docs/base/currentCommand_sequence.drawio b/docs/base/currentCommand_sequence.drawio new file mode 100644 index 0000000000..9a310876c2 --- /dev/null +++ b/docs/base/currentCommand_sequence.drawio @@ -0,0 +1 @@ +7Vzfc6M2EP5rPNM+hEESCPEYJ5d0Oslc2lzn7vqGQbaZYHABx3b/+gqQQAL8M+A4bvwStMgC7X76VrsrZ4BuZqv72JlPHyOPBgOoe6sBuh1ACHRE2J9Msi4kJtELwST2Pd6pEjz7/1LxTS5d+B5NlI5pFAWpP1eFbhSG1E0VmRPH0VLtNo4C9alzZ0IbgmfXCZrS776XTgspgVYl/436k6l4MsB2cWfmiM58JsnU8aKlJEJfBugmjqK0uJqtbmiQKU/opfje3Ya75YvFNEz3+cJXOr2d/nMfud8eHofxQ/IHiq0rzF/u1QkWfMYDdP1E4yQK+Wuna6ELNoN5drmYBQ/+mAZ+yFrDOY39GU1pzO4EXPxUyYbMMqnDZNl9PW8HgTNP/FE+bCaJqbuIE/+V/kmTAgC5NFqEHvV4q9Re3kjj6KW0B2CSsR8EN1EQxfmbovF4DF237Cnd8fAIm5jdaaqPa/SVxildSSKuznsasSnFa9aF34UW1x7HNjSL5rICCjB5l6kEEqLzjg4H56QcurIfu+AmbDcnChfDu1Vsu+sHfR5+/f4NOvdXoM2aN4s4m+RNNJs5ofeBreo5lIxbrYpdQkfjbqx6rFFBB0ZtXaOwZY3WjUhD7zpjO9ZyAydJ/ExN03QWcE3SlZ/+yK41YNm8/TPTuwZszNu3K26IvLGWGpLhC1nI5vUj/7pNbCHIxrvSNV0HQlKNmLfWcqs+5kbLJdEidukW0HNtpE48oekWPQqXQj2F8ptAkEzdZmkhi2ngpAzfqs9psT5/wlPks6mVOAMm0CDWyw9QYAcI0DBRxyw0wYeRmb42cgPCyFIHKlTVGIghyFlL3eZZh2TLDBrPUTwQuyhGrKBfKvkNq6HJcWwuguOc+S+/NhYHW/ipuhxUAgmjnPJktuEiJ/AnYbam2Ng57WU04rPdwTW/MfM9L3vMcDn1U/o8d3KkLtleqMF1HVBTSTxC4QLSMjnBFsgKWffchA/iJq5Wz0mmuV5Am1mEB4Ay02TEgi2ZaoCmg6OYJmHwT8UbRXMaCtmdn02+ZL2CL3XdUvgSksP5ci9u28pZu8nNOCtyE1RQIhXXELg3l5ENkN/BZZ3RDTkhwBHqBOACvMw7AxW8lmkcDN59lssJAC72YWcC8DoVI5tRAzwO48jEGkLVTkA36kOfFPKoJYo4eL+5mbczydtwzRZGiWO+iTXAJynvJuX69uFYUmZYfVdSRrADhFYRkY0UMJmEHB8RZeiGMtx1sYPoJSC6ME7Fmi5/UEdwxTtw3zdcm5vkKmR5dK/HzOjPf11y4AJFxktYwOJDSMAip4xbkN2hjwP1nVueBTHe6OKwunUzbLsfF/emnIpI738MBin91qEMAjDcOi4kmiGcUtdJlloAZBgnSLIYzZSj5yfzwFlLiRa3vLxg5mqoH0KtJSOMTkleRhcb9IpokLr9QdA6mGgkKgTqbj/bTsFjmFAJoTca8mx4x2B6s6sPUUHDgsN6eWBv6jF1lXqwMrQJgEbkB+OeWMioz6hTFtrmhLbBnL83uzaHA/O2VriK4nQaTaLQCeTS1fmXoIChko5IAMiM0wJmq+7eOqsrooYl6Iq6i5S2bFrrfD2K0jSaNRJJbKx86Zc0NQoi90V04wcByG4DBc6IBkPHfZnkdq15k+OJY0M1cIuG21eOabaa8mAa2ACJE4UwIpNxTmvxNEV+ZGwIHncsxnpKpLuSi/lpCm4KuxlFntQUoLlNbphC2nMdY5V38j/qJqPcJu10QD0pGu1RhbkERRt7KtroS9FkD0RLB4Zuaaae9YZgbGPhC72bvmtlSYKa+m4L5VBv+t6DzPcN5XTNtkW7CL2I8YazPVlkWAvlkEH6C+WOSmtvixvOJjY0NVv+WCq3kvb47vAUFYsxlZGRDjXLapYVOz8FVCtX6nZtWbwtNPQcP369or+7Ty/J9y+v1t/Tl9eW0LDKqH+LUid4dLMTyV5bgHIxualGVt1osllfWfVWqzTDxIv00iZuyQD25KVb9bxHMHYJesYn3A216rkL5/xxi0Rn4z91DUtuDKoYQbZmHOsys3M3ctZWreqU8Ou5ooMN5rlx/z7zsKOaJ0Pz+eNP3VaZbD8H+kFc6Vh6Rpw0hV4RZ3WAuM86VadYNradNMS62VmdSl00GGKlTNXTDxJIYz79g/ywA8KfIH93kHdYjFVBbtVqsScCecel2OVPpN+N3Gf600rt1dPX3xKwbPlhoXoe5NEdQBxkYfUoZleT7Eqca3NrB90uOCJvONqW/GJvZ0VaDddMlNQNV9nnf2QYDN/bMB0mfq+yXyUpbsMmh//O42NxPLI0KDOxmgmziKUd+ePJWo3RIrVxDmbx/UvxrFn9O4Cie/VPFdCX/wA= \ No newline at end of file diff --git a/docs/base/editModuleCommand_activityDiagram.drawio b/docs/base/editModuleCommand_activityDiagram.drawio new file mode 100644 index 0000000000..71d0db86cf --- /dev/null +++ b/docs/base/editModuleCommand_activityDiagram.drawio @@ -0,0 +1 @@ +5Vpbc5s4FP41ftwOd+PHxMm2O7M7zTTTafMog2w0EYgRIsb99ZVAGCRg7E0BJ3Fego6ufN+56eCFvY6LzxSk0X8khHhhGWGxsO8WlmUats//Ccmhkri+UQl2FIVyUCN4RL9gPVNKcxTCTBnICMEMpaowIEkCA6bIAKVkrw7bEqzumoId7AgeA4C70h8oZFEl9V2jkX+BaBfVO5uG7IlBPVgKsgiEZN8S2fcLe00JYdVTXKwhFuDVuFTz/h7oPR6MwoSdM+Fr8s2D/rf04deyKO6/7p/Z48+/5CovAOfyheVh2aFGgJ87FY95jG8CRujCvn2BlCGO0b9gA/EDyRBDJOFDNoQxErcG3GC0Ex2MpFwasRjzhskfSc4wSuD6yJrBhVuE8ZpgsQXf2DbKPy6XZ+RrwmLw5c0jpFwXIYkhowc+RE6wV5IFqYY1KfuGU1uKohadnpQBqUW748IN0PxBYv0/cLdO4w6T8EYoMG8FGGQZClQIqwkw7OjvSUxaL+32vHQtoxADhl7U5fuQkDs8EMQ3PkLuGM4nVwHd19DMSE4DKKe1NbezkrqOaWoLMUB3kHUWKpk5vvfrybI7ZH3PIBXgFzDIGXdPwv/EMUjCDouU5EkIQ8nZPkIMPqYgEL177jFVSjUD2G63ViBYzxglz7DVE3obz/VGMg1nAN2WmpjWnMbhnDYOGpF4k2dTQKoyNgbAngqwZXQB9nvw1c1lNHzda3Q+5nIk73Okbybv4/05W7BA7KcIshyTqvXU6rkrZPwtGwfZOJdhfpASyFP2fDlNUCO/M5Ye2DNHoeVQFAoiQrIyCDFSUobEqSFiUdmdwRhmrHwktMyzQQg/QJyyLx6n/K5lurf/bEXyT8KcI8vnl7SAZ5jw/xvxNrkgzb3rEMCBYSrKKpoJSaAGvRQBmWQHHEjYTs/r7DtGYSi26aW1IX6kVPuYSNf+0u/hqc/gral4Wn3sfMK5dD5RG+I7DlGrtxSivLFClDtziDLPKCdMoQicbnpoTRLNp3ZfM61sTaBAMjpXAL8XRXN0/Thb0Vx1IVuPsVMrWrd+ct3JkHvxZMjsVkmuxfYrbXwrRu292qi16OHNfNE1e+o+7i3aDpttlV7z8Xzda0qpnb6U2pszpTbPqCG955zau3hO/f7LPpWOvBW36I+VVC/nTqp7ygwdTcAYpdmQP2qpBMjS6nvbFhXCfqawJKMfrhbtqx7aV5NZUrdwNhl+U37BXGq49nzCXPbgqqv9eJ8wx7j118nbsfGkZnJ/nLydvJBd2EtpeTz3Nq/zUp7m7joLDXgpTg84tIalYkA2fGDX699n6Fz6eE8dzx+qE4zqMq0R6xBmK3Q2gfTEXWQydT6vkPX21V4vRLxW7TuFCD2MjKX2egZ+Su1NTe3tOdS+WxXhFyiIeWD7yLcjR3dJPZFx1u8NVk8p5Bp40GzR6eFhpEsqbzY/nKvMp/n5oX3/Gw== \ No newline at end of file diff --git a/docs/base/editModuleCommand_finalState.drawio b/docs/base/editModuleCommand_finalState.drawio new file mode 100644 index 0000000000..6def2ca3b6 --- /dev/null +++ b/docs/base/editModuleCommand_finalState.drawio @@ -0,0 +1 @@ +7VjLctsgFP0aL9ORhCXLy9hO0mmbmcy46WPVweJaYoKEi3As9+sLFrKeiZ1UeTSTldEBLvicA1wYoGmcXQi8ii45ATZwLJIN0GzgOLaFfPWjkW2OuL6VA6GgxDQqgTn9A0VPg64pgbTWUHLOJF3VwYAnCQSyhmEh+KbebMlZfdQVDqEFzAPM2uh3SmSUo75rlfhHoGFUjGxbpibGRWMDpBEmfFOJis4GaCo4l3kpzqbANHkFL3m/8ztq9xMTkMhjOnyWV2nowOWvTzeb7OKcWGNncoLyKLeYrc0fHjgeU/EmS67CqlnLraHC+73mRcVJuhPqVDWw3VVWVqpSaH53URYFcE4TrGczl1hCUasmu2j2UFg+dAE7tVk4EjKNRzJmCrBVMZWC38CUMy4UkvAE9CwpYw0IMxom6jNQhIHCJ7cgJFVSn5qKmBKih5lsIiphvsKBHnOjjK0wwdcJAc2ltZ+WDgDZnXqUKqvlATwGKbaqiemAPGMMszIKn2xKm40NFFUcVjgPG2OH+8Cl9qpg5H+AFYYdVmhwX+egi6WKLD1QZA/rFI3aFLlOB0f73aN3ktwWSTtDp2/XpkOrroHf1mDYJcFTKeC1bYpOr+k9XrUPe7Uqw8BBBIO/DFqaqRov8GGxNLvg3Iw27IFmu7Eb2HabZxt1EI2eiuhRF9FXIFKevDmy3Zcm2+8iW2VTawZfOCZqH3hrlI9fmnLbOXzgQUJOdRKpt2OG05QGdV4ho/KH2Wt1+acuf3DN1yyrVM22tT0ZSCvvbFCpJsLXIoBDe2Gb8urxeE8GIYBhSW/r0+ii2YxwxekuJczqyUkhqDP84NZj5PM33aqZ6aFIjTgSixBkK85O9f3f/gcjHJH5vHIjjF6TEbzejOA9sxHa2d3/ZgT/FRnBsfoygmM9sxHaSeZ0LXZqaDPsbrA9HsfL5dIJOo9j4i0812scx1YPxzFCbo1h9OLppj1ucX5GqMxzoCmPY5wQVU2AgVQ8N/lPI7zSxYTLu65G1btY/s6kdv729UryVeUWxmCp73GpCkWT8Kuum514bQ0BBb5ldWk4scburobhBbAJFyqba1z58j7F+5LT0+W5+b6AOiTuuro9mcTFnbAicS7vN8U2wVJRUjwbieL9513v45f0EXrbz6q33bmkryVl6ftSfsgbzOiR0j7iFUZ9lm/S+YFavuyjs78= \ No newline at end of file diff --git a/docs/base/editModuleCommand_initialState.drawio b/docs/base/editModuleCommand_initialState.drawio new file mode 100644 index 0000000000..ea2ebdbc90 --- /dev/null +++ b/docs/base/editModuleCommand_initialState.drawio @@ -0,0 +1 @@ +3Vldc6IwFP01PHYHCKA+Wmt3d2Z3pjtOd9unnUiiZBaIDbFif/1eJMhHsNoWa+uTyU1ycznnhNwrBhpF6VeBF8FPTmho2CZJDXRl2LZloj78ZJZ1bnH7Zm6YC0bUpNIwYU+0WKmsS0ZoUpsoOQ8lW9SNPo9j6suaDQvBV/VpMx7Wd13gOdUMEx+HuvUPIzLIrX3XLO3fKJsHxc6WqUYiXExWhiTAhK8qXtHYQCPBucxbUTqiYQZegUu+7nrH6DYwQWN5yAJ70gvw9dXT/fV0fDd5+pvGD78ulJdHHC7VAxu2F4K/yxkHtxC1XCsovIclLwYukg1RQ5hguYu0HITWXP1uvEwLw/eYSYazeCYSS1qMQ7jT5hqw5ZsXZrsWhy1pmtkDGYVgsKCZSMH/0REPuQBLzGOaxcnCsGHCIZvH0PUBMgr2y0cqJAOyh2ogYoRk21yuAibpZIH9bM8VSBtsgi9jQjM0zW1YmQOa7mSk5BkOCOURlWINU9QC5ClpqLNRKGVVCm2gTEFFY4X2sJL2fOu4ZB8aSgAvEANqEUMD+zoGbShVaOkAIsupQ9TTIXLtFoy274/OQXI0kDaCTs5Xpo5Z56Cvc+C0UXAsBlxdpmh4y57RqrVfq1UaDBsRTPszX+MMRjy/T6cz9R6cqN2cDmC2Gm8Dy9JxtlAL0OhYQHttQN9QkfD47MB2Tw12rw1syKeWIf3BMYH3wLlBPjg15P02yMeEyRz2EY8iHJNzw32L58lwH+yW+m+4+wiW/NOrHTkfDfXiOtHlfitZqOcvnwzwbRr4cQBvK64aINOYDLMqNcv2QpwkzG9LoSnRitS9sFQz5GeKCEFDLNlj3X0bFGqHG842daFCfdB4p9vOF7fuI+FL4VO1rFqeNjxp14PuSmIxp1JztSFn++Rv4Mt+O1/AiljfZbk3BK+699Wxq1Ql5nlvbVTT9P0822YOwr5b7VR6AEc1FlGzDjtUDnZDDsg031cMBxTD53Z4ve4Or+7q2Hzpdfm582WbnfHV4urYfOnF5WgpNkBnnG3+IuwwIZnNZrbfmpAQb+q5XiMhKVKlLvNudPJ63mqpMV9/wVWvt8ptd/wLbnDSC655CJ1XHkGtQGg6OvYBbKl+30sMNGXyrvAB7coq6JWLss7LBZQzsC9DOkBo+YH9MEpzBx0preloh9KAeryuTFtkE5LdAWv79Mxn43KaD1ifD408ggNlD93yY1o+vfwkicb/AQ== \ No newline at end of file diff --git a/docs/base/editModuleCommand_sequence.drawio b/docs/base/editModuleCommand_sequence.drawio new file mode 100644 index 0000000000..9a422c08b1 --- /dev/null +++ b/docs/base/editModuleCommand_sequence.drawio @@ -0,0 +1 @@ +7V1bm5pKFv01fl/mofmoK8VjujvJeci5zHRu84hQKicIDmJa59ef4qZQVSrQgOTiQyIlbrXW2mvv2rWhZ+hhvX8XO5vV75HHgxk0vf0MPc4gBCZi4r905JCPEGbmA8vY94qTTgNP/v95+c5idOd7fFs7MYmiIPE39UE3CkPuJrUxJ46j5/ppiyiof+rGWXJl4Ml1AnX0s+8lq3yUEfM0/hv3l6vyk4FZvLJ2ypOLge3K8aLnilX0ZoYe4ihK8mfr/QMP0skr5yV/39szrx6/WMzDpMkbzD//duEff//v48OH4NOX3/jqjzm4IyQ3880JdsUvjjZJ8YWTQzkL4rtv0qe7dfA2dtbi6f3zyk/408Zx0/FnAb4YWyXrQBwB8XSbxNHX45SlI4soTAp8Bbji2A+ChyiI4uwj0IK53HWP76y8MmcEk/Qd6i8uJuEbjxO+l6dWcJJHa57EB3FK8SouwCjYeATn+YSthYqxVQVXWgLuFHxaHk2fplw8KWa9BQLU/LkQsCQEmIoAtTUIHIXjJQigcHf/dh/b7uG9uQn//PwBOu/ugALADL1+4/mJULNdIOZhvXZC7xIi7/0FD/wwBWXDY198LZ7OXFAM/3Uauxc6lThiLC4wcaMgcDZbf56ZTec45u4u3vrf+H/4NgcrG412oce94uioJaYe6DqwnsPZQgssdRmfL/oBFsA6shpggc61GBgKWKgCK4O4ifwwyT6X3M/IowRgFCeraBmFTlCFcHQoLrK2MT60Do+lgUcnfNZQ6CAFHb4X1E/4q38pMKW/0hdB+XXgL0MxNI+SJFpn0+jEyes0zqdwCVtijIdeOTIPIvdreVohfew6aIEz58G9435dZliXKIVR5uLtABKfvOSXzitIyb1aInIWxjvTMC1q52+KeeAkQirqaY8GqcLcXyndK7agnhOlhW20i11evKmaWpR2yhOjxWLLE4USx2/fnSVqflKI88fED7bfsShz4BFu6ZTAphZyaD+ijMh1UTaHEmVtvgPp9FS5ExYX6do8ISVXE1KdLB8T2Zfg8+h4dMm/HAL2BO3X7PO/k2Snz4Y++t+xpwlsmYd16DI4R7QnT8N2R0/rY2WhRXKK6U8XKC7StKujAWoagDXzNdtgcCg1ZL9AuqCGuJkaoqFcSM1RhRjmy8JPTuB7TiKm5vtVxsWCU/2K37PsudnTip/eMgfRwoqn53SdoLjI2eZOR2vwIHM8p9NqYun0U4KnU4bYDzx3kGDDRjWMSEOMekkT9SBp8sRbg9Rf4GoPEgACJGifHvVIRhrm9cM5lbrsCvk+eS8ijqbeUikjny29aMosYlLjw5cCruzgv+mBYZqwHHjcV19+PFSPKjzIB/d+8qX4GunzwhjDxfHJVnpwqBzIltoWdC6RIi+KNNCvauXnog9dLf1USFMGzxdXfpCtiApsW/45kv8a9w0ATUTN/CF92Xyaxioy6YGY4FLppgmBYVrm6SHBqc3fxpQyTeX4uFvzxNd8K2b/lR/OoLBvrrPhd7Hj8f51Li3GItSL2PUpUdeVx2yoPJWiM4TqcrkvNcJEVSMTGCatsJB2FSdt+iRgmrQiqUsUf5stORUONyFutOHipXvP2a4yOQL5y5UdkYonHNkN6sTGBPyIxMYWrC+AyrLFC0mNrZqKlt5TfAg1bYN0ZLQNDXw+3GosT4HQ6kZOQehMml8t038/pS+OkI124nGZjQrG2FYtI8UY3TQjve4VsJ1XiJ/EBlR7iJGiyEzgUqG03dE1IGYGVU3j86an4BuW4hsnd7id3kPT/uH0PkvPcD80vrbklzd2mpNYszaTjU2BthPcu7hpnQ4rsB1L3zdbK9kKRruN5yT899Oy6NW66HPzeL5kGjIWA92CifZXHSI/THGItVU2gExcYx/QFB37i+Eq2aFtUNZR8wCwL4lpaptY3YN42Q5T/8Z3FqzbUcVSENk5VM4oBO3CxEB1YnCtM1s8ya32qsakQUF+uNTBNGxbcmuaZ8lt3bqdv90i7muob8n7LI15j2lWijg+gCUbNhCYcvJKGmymvngBp7KL2exFQcMwIa0EDlBGoVaRo+YkfQcK1jRQtE6B1UBhkeECBUrLb2odr9RGkeuSPhZ+afCp+lH9F9K03acSP6Qw1TR+YCl+MGk+eokf9W6J8mKIQYOHmiX6W5EhfnC+8vD+8HHL40qSOEKBplNCKF/e0java9qwTdv6G7VtOJR/AVvYr8cMwIQ84oovoG4+hTBpa3oC8ahcXtW4nBH5pbS9nhldWuVgMEr1HKjhpY/86U6wjFn9XHWARP4k8QrKrV5NOQqYyMWqDyDbNUA1vFjT46uat4/VmHE32malRlovtSw3l1aCER5QWutkwuDYMtxaS4lETAxFBloRUjw5YkI1sXdXke+qFenedXQo0Wvab1PZHGSoH9ErtpxP+WmdDq2vvDrHUdnQFIikbv1d7dcYJs+8YbuGRgEvXh41kc4MmV+op64MLNX30JQ6Mi5l/VPa7Bipfd+ur9jBrfu/oC7D/zl6YwZUkaHaYKht1QIfrH0I7t4GQ4hlkGvGJhD+gK64ktH1GPtC/vyr9eXFiwfcjvPDNrlgk9ZoL5U9ERML046hU4RgpBibdocLgooP/Lr6oM1y5qLKXw8HTfeSB/ADICWQXS8yoIjIhiZ+VQFS+9RLob9dojJSU9dQiUqP+7hEJlTXfi2F4hPs1SqrZFNavoxzBxRs1tHBt27JQmo5pNqSdUwK5a6s4ZLEH6Anq/eQiVpnk2O2XymkTne/q+1RXddUSLX7XbRdYWnXHI/RcoXUvu3efTNtfcF132T0xvnslbaXAYsUMpPKdcXweSuWL1CQdhIbexjW2NWsE9u6mFy76b0xRfGwMfpSUIMW895T50aM7uNWfj0ms3JAIF0bEuX7swpDBmjLyRG6DtWimsha/cWs3EBKDWwzzLLOD3OezvtuKzSMPCoUEqlkMtPcPFdKO6r5azHkFKRzBVeyhFhm49r3vPRjtHfrrWfPcv/SWR52v92xLvfV3ZNVXqT3d7fjBl3KFb8tZrnmtxWU5BmrZrSnok9RqWSdomb38Fbeb7VN0YVosCD9BDTZr2lHgZBv80vk1p0z6tCX51O1lFh6fube0HRXUbTlmfNH2fz7SVUWtsUC66cSAirnTRohgKMKgebWaq1gzC5S+pkxJFRt2h4XQ9IgO6vcDO+Rp0Aczkzf2TvXo2FmE0iCyDTb2rrQOFhdiDRYTU52NhEjE5vNBv0ak51NyuhYsykOT3+CJI/Rpz/kgt78Aw== \ No newline at end of file diff --git a/docs/base/moduleDetailsCommand.xml b/docs/base/moduleDetailsCommand.xml new file mode 100644 index 0000000000..c4300a340a --- /dev/null +++ b/docs/base/moduleDetailsCommand.xml @@ -0,0 +1 @@ +7Vldd9o4EP01PJLjD2zMYyBpsrvtaRrS7WOPsIStRbaokPnYX78jW8bYFqxJQtpzGh5y0JU0ku6dGY1Iz50k2zuBlvEnjgnrORbe9tybnuMEQw/+KmBXAN7ILoBIUFxAB8CU/ks0aGk0o5isagMl50zSZR0MeZqSUNYwJATf1IfNOauvukQRaQHTELE2+o1iGetjeVaF3xMaxeXKtqV7ElQO1sAqRphvDiD3tudOBOey+JZsJ4Qp7kpevj/9+WO9tu7+eLz/fj/62v8mky/9wtiHc6bsjyBIKp9t+iH6a8ToJB1PxWL9uLjtDx49PcVaI5ZpvvRZ5a4kMBI8W3bcgd7pmghJtiZ50aw0WzEInkd4QqTYwTg9a6Q3tiudSbc3lYR+qUt8IJ870CDSbhPtTVfUwBfNzhkiOF2ZcsdzytiEMy5y2J0HIQlDwFdS8AU56JkF3gAc0R236T2p1vPp1XwOOtLpXIxO9//pBDZTTJQRRdEmppJMlyhUvRtIVYDFMoFFb2zFbRmctoloK//se8pE4BjEyj9GSU66RVOSNvU/j+tBi+upRBKScpNxOIJs0FpjMuUpaVCmIcRolEIzBLYI4GNFCIUsfK07EoqxWsaoY13pmpSvLoPudQL3yreHlmM7Q98beUEt3zjt+PCcq3zgcDDwAyvwbIOClxLQMwSLz3KpYBt+JHOiCmS1RGlNVf9Hpm6o8Zynsr/R272GISkXCWLVgKYlNeG4pVV+0ys79nC5bVv5QFNl3MpdrTQJpy+s1lcCuNh2Cz4836s5K6wV0jQCwKtaTxw88abvHMs1HHxrznK/jMGXSXrab1sB8cIUf9yR/bav7q/LQ++8WHqx20XEJBP5OZVgufxHU7v90tSO/Znv+R1Tu5PfwxeTwq1XLa5tkMY3VS0XK1o6VC0EQ72sm1zImEccIve2QhtuXo35yPOYUbL8Q6Tc6eIfZZKfCszDwudYqXRevbnimQjJqXF6oDrrSSUFYUjSdf3tYJJFT33gNHfzbV3I8hrxvLoFiUREpJ7U0Ha/ixdEom2Qu8il2T6PutfwxssY+cgRhsxU5drsaKp9xXD1w4DM5l3CFSMSzM/3he7hatsNtQxV8RuHa4fn2G8Rrs5PCVd79MbhasrO7XB9IGLF0/dArXQK3jBQjaVB+/Va5NQbIhFlqwlPEpTinornQrWZKDXDhBEJEjWlAzWWJK9R5bFn0oF2MxQuolztz5lkVJW1OY6RWHxWBa1UXFlXlldLCEdkL8UdtMUlbug72JgUrJHrnPFEe7HsxnJqZJDdu5Ts7Yd0IfvfUO1jJIEZx3rXt6u++9/qfhl92+/sBwG5/6uEmH6X9gxpPatRWrmXkxaa1W/wxdVc/SPDvf0P7VpRc9o4EP41PJKxbGzMY4A06Uxzk2vau7QvN4otjHq2xAk5mP76k20JW9iADSSFFCaTQWuxK+337WpX0LFGUXLL4Gx6T30UdkzDTzrWuGOaAwDE/1SwzAUucHNBwLCfi0AheMQ/kRQaUhpjH821iZzSkOOZLvQoIcjjmgwyRhf6tAkNdaszGKCK4NGDYVX6N/b5VO7CNgr5HcLBVFkGhnwSQTVZCuZT6NNFSWTddEynY1oJ7FjDTirT/6wRo5TvnKYmR8kIhanvlV+79M/oQ9f5adw9ge/3d/iP+Y8v3XwxH46sdeUlhgh/TeuLpX0/+Qe+PHwlI/J58P02+RxJrcYLDGOJmvQ4XyoYA0bjmZyGGEdJHXngs5puNNwPaILj+pZuEY0QZ0sxVlEi7S0V9+V4UTDOUWualthmulIIJcuDlepWbhZzpaePTAu7KTLWcILDcERDyjKxNXE95HlCPueM/otKT55duyfCL13eAXBuJtIBcEr8ek3h6502fA3QE+ARH6VKUkQWU8zR4wx66dOFOA+EbMojsa4xSKFUGRDU4Wpkr9UTlW3NGm5kr20M2B249oFQnzu2bgXbRw65OGnXERau5WswasgRStAaRFIEQxwQMfQEFEjIhylQWByt1/JBhH0/NVPLG51ZGnV+IeyJSrzWlQP6hgnMvmMPbFfL34oPJY7Y5lU2sd/rOa7h2qCGMadNmH5NMnDCjBpiM07AMyO5ZD6DRGOR81+cVjLDCSW8u5CbvhZTCGURDIsJ65rSD2zWNM/KxVQP6M+SqpaPBHOcqjcyciulwkW5Xt2WEOcLr4jLOzxaeAhbHiaBENjF6AsV3B93zU3ZlArWT8IsEqYiehDZHimVEGwUOq9yNqrIcarBsap3yuFw4vkTDCpUQL7oHOSQMj6lASUwvCmkw0L6iWZApxj9QJwvZeMDY051NglQ2PIpxfbKVsNv5WfjRAKfj5aKBhvLpk2Flk4jlGD+pOyI99+KJYhRYTQdKJu5R1I3tMzK0pU0Zh7aMk+6nEMWoK36+gdylaEQcvyib6OOiG1sKEvXjMFlSd+MYsLn+2krVv+QaimFWd/QjiRLNqxNA6eREcc4npEsUnPXtAMuC/AVdr86LZjGHmnBi9lLFnhgvxzRPtZPJlKdt4rUEzgyBhsrqHhVXljX99SPQzRGHOJwPqJRBIlfKkXijZVIkb/Boa2Y47noedKkFfMhcicFo/aqyY9TWAB1Y6iSUc0lClDFR7nQsIyTZg2oNt27M4p+lp902fHaqUhdQO/MRYPfKBUpp5Ry0ShmmcdTpmW90uulF995dmyn4U2P6Z1keump8bmnF6vFqfSJQl+0kZfTqDVd6u6Ez5IuvUZ0eUBsTsmFKO2JAtx3QhSnRV75C4bYh5xeUksDxlimzph3U+huvmHWUgvDhH/lojm6kGU3Wex3Shb1VeS27ybfoE1683Zn941K763amH3u+CpXiOun38DWDebtnfxQ66vFk7sdrDsUL6xVXci5sta0z4y12dwdPy5Tqyh+1Wfd/A8=7Vptb6M4EP41kfY+pCIYCPnY9GX3pK1UXXW63Y8OGOKtwZwxTXK//sZgCIZkk0ZtklaJqgbGLzPMPJ55bDJAN8nyq8DZ/IGHhA1sK1wO0O3Atn3Lg/9KsKoEY9euBLGgYSUarQVP9D+ihZaWFjQkudFRcs4kzUxhwNOUBNKQYSH4wuwWcWZqzXBMeoKnALO+9B8ayrl+LNday78RGs9rzSNLtyS47qwF+RyHfNESobuBDd5BSzxA04GSmX/oRnAud3arOyfLG8KU72u/Ps3u7Yfp44P31y/vx/3zdMb+HA8rY+7feNbGS4Kk8ujaNaJeMCt01LTH5aoOIzg/U5dFwq4DyQWofSFCUgj0dzwj7JHnVFKeQpcZl5InrQ7XjMaqQfIMpHOZMLgZwWUTUXUTM5wrrIHZU8GLNCShbokoYzecKaVgCrLKT/ncpdWghSw7YNvhxtE+8Ol68ivhCZFiBfdaHfJRpVCvTUcjdbEGOtKieQvjnpZhvbTiZuJXxRb66vC+LRomu9FAQljj+pYLOecxTzG7W0una+l3rsJeBvIXkXKlUxQuJO+gQQr+TLYHWik9bpgFYVjSF1Prpqi9Rsda0yOnYP4aTZPxlW/gaYQ6OiUWMZF63CvAslNzR6/V0ZvzQgTkUL0aqo1jTw3w0R757oLwd0L4eNL6uAbsoPifBu7+54a7uwHuHpMKkBlODdx7/xaKMU2DCqPXCiLx7EulEiy0Wld/lEYo+yKeymGEE8pW1RiYCCdZ2YiQoxYBYS9EkYFeizlJXi4dNcXIzpadtspK1ZhykWBmNi90hVXtTmVn2chgSRIxhEcNaBpvHA/8QQ5xxVJUcwCLjgizmQIhSfX0Vsu0slEKnOYRTFpPn5Kmw4KL0NTeHj7DwXNc0p1hx+e24ze+tp3J+tpteT6kecaw9jpNGW0pjhjHsm1QHVy4istvd5rwsGBqSAD7DjVFXgEFAOXe1igBYFZA0cO6uVK5AOSLOZXkCR5UiRewmTGT38nZmj22zHTjOT26NrKtPl+rOdyZ8rWRt7uciTlPZkW+O0om8zYIeoeGR1FkB8GmqhZ6M8/1ziHkyPOvkGdG3fJ7UXcnV7b/4Xj6aNyPuzslLCfl2n01oWmhQOfCW0YiuWEj1+zwSBpeqzMCNWdG0kqi6Y9f3oG7fqhN3dXEtWvBz1LgTJoet0u976vuVu27RyIoeJ0ILdzClKqSvccq2Q96kNdL7vG7TTN6G4zWCo9LxRzb5EBOfezyttwL0IFXrVkzNV9+2FNsfxa/k9j1PvwQk/dWUjvsML/AuMo1H5lY1iBtJaC/85I3kSUJCkkUmQh4kuA07OWjw+vQ9nqzrUKdvg453Y291ace9Qpsl6D6mPRMS5CNLtRjf+qBxv2of0zqYTu9uD/UO4mQSEyZWvrgaeVwAXmUXBKAWaImG/YeHzEB+LsTwOUo7Z2O0tz2WVoHXu57sLnNB3odZHsd1Z/rMM2+vB05R8CjsXMqwCPH+cyAR/u8LGGMZnnnDKF+Y6xOBCSWpF+eGwT/ptafvnJ33/G6Xq9yb3rJe+aHhmgP5n7JY0fPYw26jp/HHLuj+tzzWNl3xy98aivWP61Cd/8D7Vtbb6M4FP41kWYfGgGGhDw2SdsdqdVW045m5tEBk7A1GIHTJvvr1wYTLnYISUNKd6cPrX2wj42/71xs0wGYBZu7GEarB+IiPDA0dzMA84Fh2GOL/eaCbSawJnomWMa+m4lKgif/HySEmpCufRcllYaUEEz9qCp0SBgih1ZkMI7JW7WZR3B11AgukSR4ciCWpT98l67Ea1laIf8T+ctVPrKuiScBzBsLQbKCLnkricDNAMxiQmhWCjYzhPna5euS9bvd83Q3sRiFtE2H8U34HIz+Bs8oeni6hk7w1bGvBDqvEK/FC5OIivnSbb4IbOoRL64DfBvDgBWnbyufoqcIOlz+xqBnshUNMKvprLh7WY1VlhgmiSgnL4g6K1HxfIxnBJM4HQZ4toMchzeiMXlBpScL2zIt3gPDBcJT6LwsY7IO3bxJSEI+KXlJxCq9opiiTUkklugOkQDReMuaiKc5sIKuhi3qbwX4lilkqxLwu4ZQEG65U11gwgoCFjVEIFxPbzfxxNnea1H4149nA95d6RJEA3DN7GyN0RxR6ONkRoIAhm4TbPe+h7CfLlKEYp/NDPF1w0L8WMimzJKY1jB9rqd1jGGU+ItULQchRs46TvxX9A0lmcGmUg4IcnOcywTI8MzthyvlgPjMyq6xvwyZLPBdl+uvU8KFyPaUlBg5Nlp4l6CEblQ5oaCErqKEZXRFCUOmRB37iPghTce1pgNrXsOdxHRFliSEuIz8UQh2D1SjNbRGb2RVwBsrwFNgZ2pdYQck7NCG2RNFX/6QQKxbyYJQSoJ0kWFMr3l442AyXUyGQjeXLDBxXvJmIqbahyE9J0Bs5CVqaicoi9xK/JVhjBGGlPmaamRXoCK6PnLiF/Bf6Wr8cw0JWccOEp1q0O5m0QptZXzVFd67jnIpbJ5itSeF2t6a67jqa3W9rb2+31zVAMq+lhV9F1KUxeAZy3gVpst5/SSqBW43hbScLUFh3xh5lGPC0io/XN6ntbmhtu2qs2YoxNufQl1a+XUI+DJturL8Rpvo2vTHVcuftLN8ts5wW2omTHLvKLuEvzpMwblM4aleRbnScta+SwnvCXSZW/hEqWCdoBayXVPlmWxjAUajJifXeSoItL6lgqMepoKHETyLv7GORa+WCjI0Pza2GGZPk4O+AlhLDgzTGFqtIMyTwLNDqDA/cP0YM6C+U7Yz/8R+2PPQSH0Y444nC62RT537YdP+QD+sJMK4f364BYLHAtVoA6f6YWC3M+LO/PBExs6a+h4/xE1zqgE/Xnb5Hz/J2jF11lwCmL0+LWXzDlu2FESPmW++F9CaDr+qiT8oJN/EKgAJTQFVTCiksPAHVa5N2crNNOYr+aRnrK4X9YyIjH0zEjLV0E+xRjChbyihJ4UQMafuz2rHVR5phswjAww1+4Jc0mVHwHZDWW7+ACPFTrEU4fee9yjPdmpGraU/793ZXWhvpk9qPkCvqdizO5MUgbozqSvKtqMNivKGxPMS1M0hkC1xIoDRV+bYN+9lA4kQezR1YbJKo0S2/XfLZ357eYI2Pv0paMLLv/L+rDzflB7Mt6VKKTrJMelEtmVgN2SKIsT05VBxd5aQk65+qniQdDl7zQOKDprBBdirCI8fndp0sEM5/iygb2lMntuqQs/tGmNxW8hCkDXd+R9FGvM7IKVojs4UkOqK9viGc5mrId845Fns71BTDTWN7u7ShDMNqxVPDsYQ06wp6kEMMeQY0o9blOPvTXZUHk7GdonO2lBnb3kspRuCYMe5VNf8BrXrl93u7Mz3L6Cei4mzvr3mUm8v0hnlhY3c21b3vpR3B3KMj/hpY+V7oC+Zw/8kW82D94XjloQVEGlDSzfFVxbn9tGjY13rnqRAUtSDXSo47lOFi6UMQ10fl9OGoaaDfqYObYl6ZlZamnli5jA6oKjjj2OAcZhxpQuTOeJsYQMe/Pi0sn0EvT7D1Gth0prIVxlAsYsEXe0igfyB2v8OFGD1DZQWN8X/dVAscDFQWLX4Lj/zdsU/N4CbfwE= \ No newline at end of file diff --git a/docs/base/removeModuleCommand_activity.drawio b/docs/base/removeModuleCommand_activity.drawio new file mode 100644 index 0000000000..1c5153c16a --- /dev/null +++ b/docs/base/removeModuleCommand_activity.drawio @@ -0,0 +1 @@ +5VnJbtswEP0ao6cU2uMcEyddgLZIYRRJTwUtURYbShQoypb79R1a1EJJXhrITpHkEnK4vzfzhpQn9iwuPnKURl9ZgOnEMoJiYt9OLMs07Cn8k5ZNaXGnRmlYchKoTo1hTv7gaqSy5iTAmdZRMEYFSXWjz5IE+0KzIc7ZWu8WMqqvmqIl7hnmPqJ96wMJRFRap67R2D9hsoyqlU1DtcSo6qwMWYQCtm6Z7LuJPeOMibIUFzNMJXgVLuW4Dzta641xnIhjBvj4/vfDhVh9f3haJQb+/Pgr/3ahZlkhmqsDq82KTYUA7DuVxTym175gfGLfrDAXBDD6ghaY3rOMCMIS6LJgQrC41eGakqVsECwFayRiChUTiiwXlCR4VrNmgDEklM4YlUvAwrax/QO72iPMiYudhzdrSMEXMYux4BvoogbYldttdPdaN5zayhS16PSUDSkvWtYTN0BDQWH9D7hbh3HHSXAtHRhqPkVZRnwdwnIADnr+exCT1qHdgUNXNo4pEmSlTz+EhFrhnhFYuIH8ynnvaqBfdtDMWM4BnXJY23MPzmSanakE4ksselNtualP/ny67B5dPzLMJfwF9nMBAiUVKI5REvR45CxPAhwo1tYREXieIl+2rkEzdVI7IRCGoeVL3jPB2RNutQTewnO9kYLD3oFuy1FM65zh4RwODx6xeJFnp4BUZ2wMgF0d4CH5mQ7gOz0Vvu5blB9zPP2xzqw/3lvky7oajS/bPi9flz2+5pjCRQdEBW6GLMiBNQnsdqYF3qIXs9W2OeRwhYJbbiTNOaSZdzK7UJKJV5BaaiJeLLVMX3dqcQYAPmtquXqLUmWPJ1XOmaWqymRtwtwbEraFikgFEugJJ1KuNkqXJu5tj1pwZKGTqcdCwhLcCRxlQuqp6APHuP3IrN6QMQkCucxgUDZxNdKDsX4OdpNRW7iGfMw6VWCZR7zVx4osybb0un3bsf6vEHS7V7Lnh6DrnjkEj/kaQClJs13u36IYZWn5RSUkhQyIUySZGqCXSjJm/0E+ImJ6kj7lVymvg6vXx9U75+XIPOLhfUhjcEHEY6v8U4oyRFhZuy2URm8rm6qSwO7rQbLSGiWrzbBtrRp3vJ6VarDn6M6Rujd9SdlzLT0rmc4zRa9Wyyq9dd/GOyQPmEebVrdUdsj2bNjorOMa+/fV6e9cav2hUO5gXP0deF67N5iCeLzmK47TeZvVV5eWLzsDvty9oB6hPlBtfugoaWt+LrLv/gI= \ No newline at end of file diff --git a/docs/base/removeModuleCommand_finalState.drawio b/docs/base/removeModuleCommand_finalState.drawio new file mode 100644 index 0000000000..db4563114d --- /dev/null +++ b/docs/base/removeModuleCommand_finalState.drawio @@ -0,0 +1 @@ +7VjLcpswFP0aL5MBBBgvYztuF+1MGjfpYyejC9ZUICrkV76+UhA2r8RJx7GTTFZI90pXl3OOnj00StafBM7mXzkB1nMssu6hcc9xbAsF6qMtm8LiBVZhiAUlptHOMKV3UPY01gUlkNcaSs6ZpFndGPI0hVDWbFgIvqo3izirj5rhGFqGaYhZ2/qDEjkvrIFn7eyfgcbzcmTbMp4El42NIZ9jwleVqOiyh0aCc1mUkvUImAavxKXoN3nAu01MQCqf0qEPxN98u8XZpD/x8t93+Ho5OzNRlpgtzA+bZOWmREDwRUpAB7F6aLiaUwnTDIfau1KcK9tcJkzVbFU04UBIWD+Y5+7vlWyAJyDFRjUpO7gGMKOYvqmudvB7JabzCvRbyWBDebwNvUNFFQwwzwDJaYE0lVgqVTahUj8t63jkUvA/MOKMC2VJeapaDiPKWMOEGY1TVQ0VSKDsQw0hVTK8MI6EEqKH6SSgTtEBOHCtOgdBmwO3i4KXYgC1ZYoubugjWrX3a7VKQ89BBEMQhS3OlMcPA5hFugdP5dSM5h5C6n4dZttu42yjDqDRSwHtdgF9BSLn6bsD2zs12F4X2GoLXTD4wjFR68B7g3xwasj9/fsdpORCHxz0asxwntOwDiusqfxpllpd/qXL556pjdcV13hTW5KBtM4aDSRVInwhQti3FLYRr+6OHYCWNgEMS7qsp9GFshnhilOV4JbQQYNPxz336jGK/E236mlkX6RGHIlFDLIV55707W//vw76b14H7mvSgX8wHfjH1UHw5nXgvSIdONahdOBYx9XBoKWD0ULck6G1oA77B92Koyhyws6tmPgz3/MbW7F1gK0YIa8GMDr5UbNMoIL5NSR8CcUJaMSTBKdEPx0AA6mQbjKgLtSZLqZcPnQxqt7EiqcF2+24XEmeVe5gDCJ9i8tVKJrG37VvfOa3WQQUBpbVxeLQGnj3HoZnwIZcqLNc48JX9CmfFJwDXZ0b560teVWS/aOS3H5gKOi9VWgTLBUkjs803DNdinXpg+8nT2rvCXzbR+W7/VZSTOobSVn+MZmf8wbT3BJPT27HM4yZvXq7qhHq/13w0nFW0HWhGthett45yxm/XQNKw4SmWKczLbbewqtynjV7KFsxdGl+ry9yqLm0t8UweOSc9wwtqOruUbo4X+2e9tHlPw== \ No newline at end of file diff --git a/docs/base/removeModuleCommand_initialState.drawio b/docs/base/removeModuleCommand_initialState.drawio new file mode 100644 index 0000000000..4be54b50af --- /dev/null +++ b/docs/base/removeModuleCommand_initialState.drawio @@ -0,0 +1 @@ +3Vldd5owGP41XroDBBAv1XbrzunOeubp1u4uQpCsgdgQFffrFyR8Bj/aYl29kjxJ3oTneZK8wR6YhMkXBhfBN+oh0jM0L+mBq55h6BpwxE+KbDLEcrQMmDPsyUYlMMV/Ud5TokvsobjWkFNKOF7UQZdGEXJ5DYOM0XW9mU9JfdQFnCMFmLqQqOgv7PEgQx1LK/EbhOdBPrKuyZoQ5o0lEAfQo+tKVHDdAxNGKc+ewmSCSEpezkvW7/OO2mJiDEX8mA7+w9Pst/Z93B+ub26D5z/98cztyygrSJbyhXuGTUS8sU9FWDFrvpFU2M9Lmlf0461QI9FAtxZJWSme5vJ3G2WWA18jzDFM5zPlkKO8Xkx31uwjsGzwHDZq8zA4SlI84CERgC4eY87oE5pQQplAIhqhdJ6YkAYECZ5HougKypDAxyvEOBZij2RFiD0vHWa8DjBH0wV00zHXwtoCY3QZeShlUyumlQZAyU5FSp3FAkE0RJxtRBPZAdjSGnJt5E5Zl0YbSiioeCz3HpTWnheBS/XFgzTAC8xgtJihwX2dgzaWKrJ0QJFu1ikaqBRZRgtHxf7ROUlAIWlr6PhybWpqdQ0cVQOzTYJTKWCqNgWje7zHq/phr1Zl6BnAg8jxXUUzUWO7Dpr5ch+cytHMDmjWG7uBrqs866CFaHAqoq02ou8Qi2l0cWRb5ybbbiNb5FNLgm4p9MQ+cGmUD89N+aCN8h8opCuUET+hYQgj79KYLxitMm+9J/PObrP/FKefBzn98H4HlnWY9Xf1+3C33+85JmoK88EYLzLB/4bx/Ajfl1KjyBulF9U04SMwjrHblkUjT7mnHqSlmiTvuUcwRCDHq3r4NirkCHcUb6+GkvVhY1s3zE9WPUZMl8xFslv1htqIpJwQaigO2RxxJdRWnOLN36BX2334hXoJVdjmIU2/xeRl8bFad5XI3DwrbfJSgnmlmyg9VmrKTmkh73OsNwwtI+7wYZhptY8i85xmE4FqFgHNe96xXjMaXgNaI9CpnXbEZfvSdga7u51BDXVqvdR7/6XrZWid6dUS6tR6qV8JJku2JTrVbPsJssNsx/d9w23Ndjx7Zlt2I9vJ04I3ZfWDxg529u8FessHg9efntWzs3KU7jg9OzwJnXOuwULFfOWYr1yCwDwQ6NQLsOWDxnuZIU+l9GoiVaRVb02lDqZIgyONNjyn0ZTd3hp2ZLRmoB1GE8rDTaXZIm0Q71kZzXEG2t55mc0XrLcXD9kMjnS9KJb/1WXNy388wfU/ \ No newline at end of file diff --git a/docs/base/removeModuleCommand_sequence.drawio b/docs/base/removeModuleCommand_sequence.drawio new file mode 100644 index 0000000000..9a360a9349 --- /dev/null +++ b/docs/base/removeModuleCommand_sequence.drawio @@ -0,0 +1 @@ +7Vpdc6M2FP01ntk+ZAeQwfgxttdpp2m7TfajfZRB2JoIxAg5sffXV4DAIMk2tnHGO9OnoIu4iHuO7rlXzgBM480Dg+nqDxoiMnCscDMAs4Hj2BbwxZ/csi0trm+VhiXDoZy0MzzjH6h6UlrXOERZayKnlHCcto0BTRIU8JYNMkbf2tMiStpvTeESaYbnABLd+h2HfFVafdfa2X9FeLmq3mxb8k4Mq8nSkK1gSN8aXsGnAZgySnl5FW+miOTBq+JSPjffc7deGEMJ7/LAn3+T38L5t9+n9uf7H9R/eJptZne2W7p5hWQtv5imXC6Yb6soiLWn+eU6JnMGY3E5eVthjp5TGOT2NwG+sK14TMTIFpcRJmRKCWWFAxD5AQoCYc84oy+ocWfhu0MRTTDRv0d+4itiHG3UwAnGIRojzrZiirw7lKGWXHOAHL/tkBtV+KyaqFVwQsmWZe16F1BxIWNqji9I1pP5ho2D7aOVJn99/+LAhztbC+8A3D+hmL4isVfWREQijmESHor4I44QwUke9BQxLBaG8tgRaf68s03ELuBQ2JhEIaCEwDTDi8JtHmWGgjXL8Ct6Qlm52QorXSchCuWoZqpVA1Zx3wBtCJEfGaH1Ah8ton6g9dvQ+jqyNYhNZAG4FrKOjqyKYUpxwov3upOBO1Pwo4yv6JImkDQRfHckDtK2MzyjNjwjAzwGdBzrWugADR20Eczn6MMvGkz5V2KR8e8JXibCtKCc07gII2T8PheRHC7hS9hQElaWBaHBSzVNKpd/HDQCF4hMYPCyLLCuUEposcNPA0i8eYkOzZOkRGFL5XQYGSKQi6zQ1k8DKvLRzzm1d/DXOqLgX3nI6JoFSD6kQFuv4ny0dRGrs+xXjkn2E2dXZIcuGpn29NgbAej1k11d93h6NQlnL+nVWJgMby+9ngXFQb52L2za28vumF/tPvKruW60/senuX+UwtPuhs/Vdo+tVychSmm6FlkefYiLylMXwoa2BQRmGQ7aNf1h5UIbzP+RM/Prf3PcPlpjIMezjQSyGGwbgwYBSlsiYlC4+mgBUBmkP6s27BwWo21zpLo8DfhSro5np6b8HtwmR/W30lHxgbY3apHJ1blkqnQr24VKrjDZ9rspuebHthVHQ8VRGTvNkSAg3DamySSyd71KX2CPW02wuCgd7lnksPXwHXDba6RRlKFLKxYzMUwVS9kRfoMEh5CLrfXzVi1RhDxzux+Oxgurp3bfGd9a1XKDTWEURc4eKLyF55pV8SBnz65arG6qqGaK3tAZaejg7At8QYkG0t6WsCGRNBUPgkkIs1UBjV3e7qsRrOQ0lwSnJanjsXuypO7dbUelrmsH2VAwy/F70SLbU8oqp5uGaI7qDb/P0VFVu74i+AZyCkEo+DnZfs0Qk3XblIaG2q0LY+sDi4t4WRVnNTGr4qyEvp/qzHC+0Qc78yWPR1ch59mVkqeomK0enhxl+fXJOdbIyRpn2HNG45yg5egRZ/w2qHo+rYan0mrouOA6OU/9aaIrrYDak6qOboBWtn5Mq7Hlwqa00UpabruV9MfuOcmqJfjXp9j7tH2e0q6BkxWycqTyt2M2O7Xv84B5wcbGrze+djiV1CvEBllb3Dmv/rMrkT3xSCWc4/xjL6wGDQcfF/3u8E6HGiq7z02qrsJuoB6w7mF3bwT0dAK6ExwJU6m4uYOsAKhoa6xFHuS10Oa81VSpKto43uZnu0eUTGw2lNIEpXQHgkBFh6pqeozDMH+N8d8E2u3sXjKe/7u/8Xjc+PvjfiZddv6qt5pa9BunOTOUB367J1waPlUFBPqJnq2Eb2jo04Ehetc7vdZ7oduNHnDcG4ueXqzfbvRc/92iJ4a7f7YqE/LuX9bAp/8A \ No newline at end of file diff --git a/docs/base/setSuBySemesterCommand_finalState.drawio b/docs/base/setSuBySemesterCommand_finalState.drawio new file mode 100644 index 0000000000..ff8a8b5bbe --- /dev/null +++ b/docs/base/setSuBySemesterCommand_finalState.drawio @@ -0,0 +1 @@ +7VjbbqMwEP2aPKYiNlDy2CS9qNqVKmWrvby5MIC3BmeNaZJ+/dpgCASipi2pVtryEnvGHptz5piJR3iebK4FWcVfeQBshKxgM8KLEUITC3vqR1u2pcVBuDREggZm0M6wpM9QzTTWnAaQtQZKzpmkq7bR52kKvmzZiBB83R4WctZedUUi6BiWPmFd63cayLi0euh8Z78BGsXVyhN3WnoSUg02b5LFJODrhglfjvBccC7LVrKZA9PgVbiU864OeOuNCUjlMRPiaTy+no5d7/J2On58jJ7TGzI2UZ4Iy80Lm83KbYWA4HkagA5ijfBsHVMJyxXxtXetOFe2WCZM9SaqmUnBH2uksLJ0t1mtCULCpmEy274GnoAUWzXEeD2D4LbC2PTXO0Jc29jiBhnIMUZikiCqQ+9wUg0D1StgQz2wuUwtOwu5es0mfu6fnFeOcVbk94UaoCDZ7JyqFenfK5oSvfhSEglVSLXDMmo5pkOQQlG2WSCMRqlq+wpzEMqgsaYqqS+MI6FBoKfPBKgtkYcilKZ3xWkqC7Sc2chZ6Fi55OW2i9B6J0altjUMvdh2WvzaXXprypv0uqdiF3fYLfjI/hnkJ2gg5M/3lIWcDvROn7BOhbzzbl1NUJ+u5rkoYHqlst559DUYQzpASBmbc8ZFER2HYYh8v57Z8ATug+u4A3HstDnGXo+8rB6S8alIntgHWc5rKvDFPW3QlH8AR4Wq9jgKCHhhL0eu78FDOAxH9fFW6XDawxH+SI7QYY6MEv0aip3YsFU8Xf1l+Rea6VkLYCAVW0cKUNVMK91MuYQj2DU82j3nruSrxvHMICy2pULRNPqmfYux+5YEAex7ltWXIDNr6hQeHaEte/WcRtzIOlLc9skSxxs0cZYgl/m9pCz7TJ6hk8d295LH6379e0+dkyVPtdiQyTPbLiGBTFVjc54kJA0+E2noRJqgIxLp/EMTqe/ztccqpMGFviDQ1TojWUb9No8vQB56PvRXbw+eYzsacthQ+cMUJrr9U7fPHNNbbBquxdZ0DtIBQeuiokvGCzV7ZRPAiKRP7euNPgLMCnf6f8nhUgVZ9pnrtqNkPBc+mInNG4m9WPjlUJKICGQnVJEU9bsflSdCosnTb0XhbP79V3yb31rI6b3+6FaidyAynv631aiqMj6uGu2lqe+65VPNp1CzPT2bNp/zYZT9Qtg3q1x1dxeo5fDdNTS+/As= \ No newline at end of file diff --git a/docs/base/setSuBySemesterCommand_sequence.drawio b/docs/base/setSuBySemesterCommand_sequence.drawio new file mode 100644 index 0000000000..63019768d7 --- /dev/null +++ b/docs/base/setSuBySemesterCommand_sequence.drawio @@ -0,0 +1 @@ +7Vzdd5u4Ev9rfE77EB9AiI/HON5ke2663btJd7v7hkG22WJwASf2/euvBBJIQv4MEDtNHmIzIyQx85vRaDR4AG4W67vUW84/JwGKBoYWrAdgPDAMHZoAfxDKpqSYmlYSZmkY0EY14SH8H6JE1mwVBigTGuZJEuXhUiT6SRwjPxdoXpomz2KzaRKJoy69GWoQHnwvalL/CoN8XlIdw67pv6JwNmcj65ZbchYea0yfJJt7QfLMkcAvA3CTJkleflusb1BEhMfkUt53u4VbTSxFcX7IDRP4Kf2P8+eXz85vgfYPHEe//ft4RR/jyYtW9IEHhhXh/kbZ0ovJrPMNFYX1Y0WmOvKTKEkH4Boz09nkAx70Bn9lHx9xi0LOcX419RZhtCmbzlH0hPLQ9zh+VmibcHVjueYZ5aCEEyfpwos43jOVNmESMBWcCOU5Sq/wnP0wnjXvzNE6v/KicBaXPB/LDKUcL4yDQoyEqbG5FJw89eJsivtivcao5D4naSCOWN048fzvszRZxcGVJC3DdEpBGaZLv0AmsyDMlpFH5RXGUchGmkaJl0vDM23gbzPyGeO53uM7PnxkCsRIKHVYNqAgrNRpkKfD9Od5mKMH/BiE/IyNGNPm+QILbqxXt/Eoo8B7QinugSNR1N2hZIHydIObUK4JqAVQF1DZ9jNnUJQ052yJ3eZRE55VPdcox18o0NWg/4Lm4/mPu8R/vP88Su+z/4LUvrK0JurB9QPKH1Zf8zDKGqLCprskX1eL6D6cIqqZJUpDPCGCo3FEyb/XNGwoce5hGuFrpeFE3jILJ0W3hJIif5Vm4RP6A5W2UFIJcFBAryq3UVzkafK9ckREP9Mwim5KjOGZAqQHENlVS47jWjbwrHY0atiSRpsK1aFCo5bVlUpd0FBpssx3KfI29RZoP/4l+U4dH/m+Sr4TB5pQa0e+ujGEgoCB1pSw7apspjMJO82l4oIlDIAgX1OBYBvYTfm24pRAvBrdrlPX39xry/jLX4+Gd3elN8TLfNJo84AWKMNO5SZZLLw4uGD/FHjImSq1a/kOmkzb0a613z3ZKvfkdmU8etM9Ye1+DS9ZkxA5ganSpGNMgNXSSmO6J640TleqNCxFyCxpEcXBNdl74CsasAVeNi8ErYvOTxQzFsQIyyrdfMMXV9pQs2xG+ZvcMNR0nRHGa6qp8mrDX3HYoMr00pzNKFmimNFuQ/Lw5Y3rMP9WDgItek0G1YZAg/S6HpNcbLgLecStqs+SVeqjHX6QShPPbobyXSZllg1RIGzgmkjioKJCCqOlKPJybCDCbFXooSP8noT40eqQSA5y5YW4fHB6F79NkztytkTLrKNSMo2OCjBXj/0CfDs94hsvw23gu8YuEJCr2+7RyD3EVrai+0zAWLnEKuningZGANyhZbnVnwPlfoe6VrPdXpEKjKOQ6kdeloW+iE/O65mGgB0TOkdjR8C2wUMbX2v2KdB+sSM9G0haWATcnxiAn+wuCUJtDoGutHGytCH2oPWf2S9EYQOiMxLS34dZXof1HzL65WMDvzRJ0/CoLNyi7pePzSiJZrvGVaqLBF2h70XXlLEIgyDatj8TI8MWAjkccYuKMZuRnKWAn9FVHAea+9ms0Mtb1oG4LADHbehAlYhrQwe7XNQuB74kplmMC0cDOJY2Q0maz5NZEnsRvx06/w2qboqacBXbGpUvbmODqtREc3+K1njLmBf5ZEklMognSZ4ni0bo9FQk37kFeBIl/nfWjJ70OPsVFHkTFI2qjLpkYqeHYlQVW1KZB6xsku6OXbm2YaCnpYntn87J+PrJXgNJ8Mqkwo5IqP3UquI8YkdiaIyIeDb7M6uivMGrOTtpa2wpvB1QyLuz8x/ngHWnE3n3hG9Z3vYry9tVuBo4CqdE4jTyJV1kZRPcFRwfEIQdHlylJOfp1cnQplvzVnlC86ItHXo2j3CAwssYHUVbyrN+xQnD0dvl7clJQnlp9obmg+rMY3t5x7PZBmtDk9+u6vJSNAQGx3ZOiy3IrlgYxhSH0d2hq2C3H3oogahyv0cXndR1J3XpiUHLQRrVJ7gjb7EsmACQQ4u6HEXmiJ1wJSr6ci3xGlUqAlsuVGHMHbUqrMmWchWBLVesCExV0QproK5bYdw9pSsaV72icQUs7HZVDUslFamMpVHDskyTxTL/mqH0Nkmr5Mj5FbTocopedTrf0QKrNCjF6eJrh/L9HA9C+aRXtcj2ucYesKk6IiVdrrD1cui0eBB3JgsiwAuiY3MJWkut0GNXwCYypKltWeOwarwN14zazdb5Q009Tg2issdWF9BmVnkXyi7vCFpAvdUe5vkzk0s4VAYWHFoucDQXGsV/EWpQE49UrJZMZU+/HUeHqvPn848OjffosOPosE4VnFk4aOrS7so87Fils3CQRTzvJvRuQpdhQoYmLW0WfGUTOiBF/HOcjgDY9GZdnY6oVaHY3cLRpyJ7TA/sqYeJJxn5eFuJZEkdJgvWBHX0mkY+YPfxc5iG6ah00adpHFCL/HOoAirNok9VKMqJ5slzWer1mJCk5ofSXb3pIi+pPlShla6KvNRaOa6YuYd8XJ8lomeSxdB3p/iwFxXSDVL/xxx5qc60uFHsXgpB1UB034F4FkA0AYc0Q72GnAI9aMl9Ybj1CjHmRN9f3Bi8mRc34KnHH3te3MD99vPihhqpqkqUo/JTnjpBNTgkVbVI4iQrAqEtiag2sjVy5mWARS79SArEEiPU4hdAqismQVjIEFPG5DvpHBIpQayLfW31qi1D+kndGHU3paIqTs0o9VQxKvdCKGUKClYuhtD0glC4mfqSdzWEahRU6m4IgTqcivp3eXPhdCoidhSEqnGUjUypXQbHKFxQ2SGoKOUQpSNiNHGE0h2JBFX/nFsixMIxVfTCNdVta8EW/ugQjVasSpm104LMbVWtYQ0A5r6UvMqNqaaAvURFnnGDCbOgzgMSj1R3wo+xqemWrqm7F9ydCrnKYVTOTz2q7ARVcxCcYXMO9MBYuokdGx8iFQPYQ8fcKxhuzOKSDczTBO2LDGrjPFH0PKwD2UUdlip+jywuK7Kw5NeKW4osFEZ1QGRxbNUFMxnFA3VaeMFCainL8wfKVlGe/axpHtjju3xqtSjKrsA1NuMsiRtquJyf2JhOp4b6p3ACa2LBllKpliWVXCkyqZ39xIZanWd4wtCPLmwg6gIcmNY2O1PFcb92sidvpRumsBibDuO/qYJGSYVgaJ6Y02zCgfS1NVXa9bZd9WORZx4Gvih048sFd1YJnAn0oGmJb4+I4HGdFwARCsl1p9Ez1F8tm9RMrePh8A5mFSESiCneYH4zkRg0JGdjNutmuorEws2Pb+DetR/v/nE2zmz26ydjeuQ7ZpfvIs7E8uWXDatXPo9/Kd0QXhxzLLnfHnZ3pja0+PNCvTEJCadH7fQGNPHBNa9THuCX/wM= \ No newline at end of file diff --git a/docs/base/setSu_Command_5state.drawio b/docs/base/setSu_Command_5state.drawio new file mode 100644 index 0000000000..281a3de48e --- /dev/null +++ b/docs/base/setSu_Command_5state.drawio @@ -0,0 +1 @@ +5VlNc9sgEP01PjojgZDlo+2kaTvtNDNup+mpQyRsMUHCRai2++sLEvpWYsWx03SSi2GBFXrv7cJGI7iIdtcCb8LPPCBsBKxgN4KXIwBsC3rqR1v2uQUBmBvWggZmUmVY0j+kWGmsKQ1I0pgoOWeSbppGn8cx8WXDhoXg2+a0FWfNp27wmnQMSx+zrvU7DWSYWz0wqezvCV2HxZNtd5qPRLiYbN4kCXHAtzUTvBrBheBc5q1otyBMg1fgkq9798BouTFBYjlkQTgNx9fTsetdfZyO7+/Xf+L3eGy8/MYsNS9sNiv3BQKCp3FAtBNrBOfbkEqy3GBfj24V58oWyoipnq2aiRT8vkQKKkt3m8UziZBkVzOZbV8THhEp9mqKGfUMgvsCY9PfVoS4jrGFNTIAMkZsRLAuXVc4qYaB6gmwgR7YXKYeO19x9Zp1/NxfKS8Gxkmm75maoCDZVYOqtda/S0k2ahCpOUuJJSm8qk3mjvNpHY4UkLJJBGZ0Hau2r2AnQhk03FTpemYGIhoEevlcELUrfJe50gxvOI1lBhiaj9Cl9pVKnu88c613YgLVsU7DMISoQbHTZdiGPQy75yIYdgjO+EheDfI2OBHyk1ZwAdSBHvXF1rmQR88OLRv0hdYiFRlMwHpSZD0z+9UYA9rBijK24IyLzDtcrVbA98uVtZHAvXORexqOHbcdXT3hZfWQDM9FsvsgyWnJhEqBRC7T+X5JIpKoUFrwKMJxUGMufQHaskBr0RZg4q16aXN9j9ytTkNbec4Z2sC0h7bJS9I2OUxbkn6iiWrMbrDKepipG2HKyJvhDMIWZ2DgSXY2zrzhofZNUpa8GaocNCC8XpSqIt4fu42TOJjpskZfMBhOEuo3wW5DS3ZU3mqeLpDp/TCs6fblrt7ZF51YvU1tke7+MP6zTrUs6xXr2oeb55P+w+3OQxr9R2hMeCp8cviaILFYE3lY/iRolHldURy47hQ2QRiW9HezOOwTgnnCjb7SVZpDTlNz5UlcuMjf26yqF3NtR9OmI9gudXJgOo4yXZav/QypDigcj5WqXRdqKdt+qT5dcpW469KuKf0BcR8vVXuoVievSqtg0tHqhVX7azkcqlwIDoTAuZXrDDoQv9E3cxC275n2vz8IHy4C6xzdEJHw+M3yNPi/JOfjqa+Oe+4pcGR+PuHl42CiLvT5SjJ1WxcIHZeaW5lZ+X0s4Z87T/cVm/+/tl6pZCznwnWPU00nLfX4Op1Wvm5u6fdx+OVnEoIPyP4yGxM45CvGaeqm4mp6+stos9KyDgiyV0vH3U4nA3Oe9y/lCtq1untkioNO+wxtOTpaqapbfcvLp1dfROHVXw== \ No newline at end of file diff --git a/docs/base/setSu_command_Initial.drawio b/docs/base/setSu_command_Initial.drawio new file mode 100644 index 0000000000..a8ffb16e16 --- /dev/null +++ b/docs/base/setSu_command_Initial.drawio @@ -0,0 +1 @@ +5Vldc6IwFP01PtoBAoiParvt7szOdMbp7O5jhACZAnFDqNpfvwkECB9Wpdq1u76Y3CQ3yTnn5iY6Aot4e0/hOvxOPBSNDM3bjsDtyDB0DTj8S1h2hcUyQGEIKPZkp9qwxK+oHCmtGfZQ2ujICIkYXjeNLkkS5LKGDVJKNs1uPomas65hgDqGpQujrvUH9lhYWB1jUtsfEA7CcmbdnhYtMSw7y52kIfTIRjGBuxFYUEJYUYq3CxQJ8EpcinFf9rRWC6MoYccMCKfh+H46tp27b9Px83PwmjzAsfTyAqNMblgulu1KBCjJEg8JJ9oIzDchZmi5hq5o3XDOuS1kccRrOi+mjJLnCinALd1llnMiytBWMcll3yMSI0Z3vItsdSSCuxJjWd/UhNimtIUKGYYljVCKIKhc1zjxgoTqBNiMHtjsiE879wnfpoqf/TsjZcM4zfU94x04JNu6kZcC8f01wQxDMf2SQYZKp3yNhd+iV4cijiNr8gAjHCS87HLUEeUGgTbmsp7Jhhh7nhg+p4gvCq5yV4LgNcEJy/Gy5iPrVvjKGCkWnrsWK5FxamrnIRiYVoNhs0twRbpKsH0pfkGH35yP9GqQ140zIT9pxZZhdaC3+kLrUshb744s3eiLrEVGc5hOjKz68NOHHH4KY4ag2MdRtCARobl34Pu+4brVSKXFs1e2ZZ+H44pTyTFwesJL6yEZXIpkey/JWcUEmC0RW2bz3RLFKOWhtCBxDBNPYS47grZBOasdaC3aPIgcv5c223XQyj8PbdNmZFZ1lbXJR7LmHM/aE8NR+t8wZVpHUAU+kqoyWb51r0OJNxMXZJGrIpim2G2C3YYWbTH7KXi6sWTtl2RNlG+3amVXVhK+G2WQqP6S/vNKPSyvlePa56Tjov5zcuVYAv03aExJRl10OOMwSAPEDh9ayGs8GLqiOJA5SxtFEWT4pfnM6BOCnOFR3A5qzVlmU3Om1tJSsW85Sn0WtB21zhnQvjQXwHQc5bqstv0Oqfbdpc8kVV0VaiXbfqmeLrla3Kq0FaXvEfdwqdpHStW5KqkareMR6NYwqfJz9UZTPsbbbvcIlysJ7pRu8tq9d/lAby1fs1pxUHg8b1SYRyXbJ/w5kmwgovaQ/E+40bYo0f9+wt3/blH5ekQ0Jcnn4OwCPPU+7D+Wp76nx3uzzcA8cMZLzsGMUOrzSlJCWxfW0IzQ8qM3E0RrXZe+yUz+SW1dqWQ088a2h6mmcyz1+BqsFV6tf9Mvutf/jIC7Pw== \ No newline at end of file diff --git a/docs/images/DeveloperGuide/Architecture.png b/docs/images/DeveloperGuide/Architecture.png new file mode 100644 index 0000000000..24ee894673 Binary files /dev/null and b/docs/images/DeveloperGuide/Architecture.png differ diff --git a/docs/images/DeveloperGuide/Details_architecture.png b/docs/images/DeveloperGuide/Details_architecture.png new file mode 100644 index 0000000000..ea68731f51 Binary files /dev/null and b/docs/images/DeveloperGuide/Details_architecture.png differ diff --git a/docs/images/DeveloperGuide/Global_Diagram.png b/docs/images/DeveloperGuide/Global_Diagram.png new file mode 100644 index 0000000000..b682af981c Binary files /dev/null and b/docs/images/DeveloperGuide/Global_Diagram.png differ diff --git a/docs/images/DeveloperGuide/Packages_Interaction.png b/docs/images/DeveloperGuide/Packages_Interaction.png new file mode 100644 index 0000000000..6920a239c7 Binary files /dev/null and b/docs/images/DeveloperGuide/Packages_Interaction.png differ diff --git a/docs/images/DeveloperGuide/Parser_architecture.png b/docs/images/DeveloperGuide/Parser_architecture.png new file mode 100644 index 0000000000..dcece64624 Binary files /dev/null and b/docs/images/DeveloperGuide/Parser_architecture.png differ diff --git a/docs/images/DeveloperGuide/Project_structure.png b/docs/images/DeveloperGuide/Project_structure.png new file mode 100644 index 0000000000..db08e53858 Binary files /dev/null and b/docs/images/DeveloperGuide/Project_structure.png differ diff --git a/docs/images/DeveloperGuide/Storage_architecture.png b/docs/images/DeveloperGuide/Storage_architecture.png new file mode 100644 index 0000000000..0d20f493b2 Binary files /dev/null and b/docs/images/DeveloperGuide/Storage_architecture.png differ diff --git a/docs/images/DeveloperGuide/Ui_architecture.png b/docs/images/DeveloperGuide/Ui_architecture.png new file mode 100644 index 0000000000..45b50326d7 Binary files /dev/null and b/docs/images/DeveloperGuide/Ui_architecture.png differ diff --git a/docs/images/DeveloperGuide/addModuleCommand_activity.png b/docs/images/DeveloperGuide/addModuleCommand_activity.png new file mode 100644 index 0000000000..227f1b1464 Binary files /dev/null and b/docs/images/DeveloperGuide/addModuleCommand_activity.png differ diff --git a/docs/images/DeveloperGuide/addModuleCommand_finalState.png b/docs/images/DeveloperGuide/addModuleCommand_finalState.png new file mode 100644 index 0000000000..e68a692e81 Binary files /dev/null and b/docs/images/DeveloperGuide/addModuleCommand_finalState.png differ diff --git a/docs/images/DeveloperGuide/addModuleCommand_initialState.png b/docs/images/DeveloperGuide/addModuleCommand_initialState.png new file mode 100644 index 0000000000..b61450ffa7 Binary files /dev/null and b/docs/images/DeveloperGuide/addModuleCommand_initialState.png differ diff --git a/docs/images/DeveloperGuide/addModuleCommand_sequence.png b/docs/images/DeveloperGuide/addModuleCommand_sequence.png new file mode 100644 index 0000000000..c0a83b2a79 Binary files /dev/null and b/docs/images/DeveloperGuide/addModuleCommand_sequence.png differ diff --git a/docs/images/DeveloperGuide/addModuleCommand_state2.png b/docs/images/DeveloperGuide/addModuleCommand_state2.png new file mode 100644 index 0000000000..3587b8a1d4 Binary files /dev/null and b/docs/images/DeveloperGuide/addModuleCommand_state2.png differ diff --git a/docs/images/DeveloperGuide/addModuleCommand_state6.png b/docs/images/DeveloperGuide/addModuleCommand_state6.png new file mode 100644 index 0000000000..b4d45feada Binary files /dev/null and b/docs/images/DeveloperGuide/addModuleCommand_state6.png differ diff --git a/docs/images/DeveloperGuide/currentCommand_sequence.png b/docs/images/DeveloperGuide/currentCommand_sequence.png new file mode 100644 index 0000000000..1062f0df4b Binary files /dev/null and b/docs/images/DeveloperGuide/currentCommand_sequence.png differ diff --git a/docs/images/DeveloperGuide/editModuleCommand_activity.png b/docs/images/DeveloperGuide/editModuleCommand_activity.png new file mode 100644 index 0000000000..bdc39daed1 Binary files /dev/null and b/docs/images/DeveloperGuide/editModuleCommand_activity.png differ diff --git a/docs/images/DeveloperGuide/editModuleCommand_finalState.png b/docs/images/DeveloperGuide/editModuleCommand_finalState.png new file mode 100644 index 0000000000..bb261445ce Binary files /dev/null and b/docs/images/DeveloperGuide/editModuleCommand_finalState.png differ diff --git a/docs/images/DeveloperGuide/editModuleCommand_initialState.png b/docs/images/DeveloperGuide/editModuleCommand_initialState.png new file mode 100644 index 0000000000..0b10629224 Binary files /dev/null and b/docs/images/DeveloperGuide/editModuleCommand_initialState.png differ diff --git a/docs/images/DeveloperGuide/editModuleCommand_sequence.png b/docs/images/DeveloperGuide/editModuleCommand_sequence.png new file mode 100644 index 0000000000..7246f7d304 Binary files /dev/null and b/docs/images/DeveloperGuide/editModuleCommand_sequence.png differ diff --git a/docs/images/DeveloperGuide/moduleDetailsCommand_activity.png b/docs/images/DeveloperGuide/moduleDetailsCommand_activity.png new file mode 100644 index 0000000000..766b98373a Binary files /dev/null and b/docs/images/DeveloperGuide/moduleDetailsCommand_activity.png differ diff --git a/docs/images/DeveloperGuide/moduleDetailsCommand_finalState.png b/docs/images/DeveloperGuide/moduleDetailsCommand_finalState.png new file mode 100644 index 0000000000..63bce38fb5 Binary files /dev/null and b/docs/images/DeveloperGuide/moduleDetailsCommand_finalState.png differ diff --git a/docs/images/DeveloperGuide/moduleDetailsCommand_initialState.png b/docs/images/DeveloperGuide/moduleDetailsCommand_initialState.png new file mode 100644 index 0000000000..6b20ff8bea Binary files /dev/null and b/docs/images/DeveloperGuide/moduleDetailsCommand_initialState.png differ diff --git a/docs/images/DeveloperGuide/moduleDetailsCommand_sequence.png b/docs/images/DeveloperGuide/moduleDetailsCommand_sequence.png new file mode 100644 index 0000000000..bb47cb955e Binary files /dev/null and b/docs/images/DeveloperGuide/moduleDetailsCommand_sequence.png differ diff --git a/docs/images/DeveloperGuide/removeModuleCommand_activity.png b/docs/images/DeveloperGuide/removeModuleCommand_activity.png new file mode 100644 index 0000000000..d7c77dfb81 Binary files /dev/null and b/docs/images/DeveloperGuide/removeModuleCommand_activity.png differ diff --git a/docs/images/DeveloperGuide/removeModuleCommand_finalState.png b/docs/images/DeveloperGuide/removeModuleCommand_finalState.png new file mode 100644 index 0000000000..22746dd7fb Binary files /dev/null and b/docs/images/DeveloperGuide/removeModuleCommand_finalState.png differ diff --git a/docs/images/DeveloperGuide/removeModuleCommand_initialState.png b/docs/images/DeveloperGuide/removeModuleCommand_initialState.png new file mode 100644 index 0000000000..5947898982 Binary files /dev/null and b/docs/images/DeveloperGuide/removeModuleCommand_initialState.png differ diff --git a/docs/images/DeveloperGuide/removeModuleCommand_sequence.png b/docs/images/DeveloperGuide/removeModuleCommand_sequence.png new file mode 100644 index 0000000000..382390cd86 Binary files /dev/null and b/docs/images/DeveloperGuide/removeModuleCommand_sequence.png differ diff --git a/docs/images/DeveloperGuide/setSuBySemesterCommand_State5.png b/docs/images/DeveloperGuide/setSuBySemesterCommand_State5.png new file mode 100644 index 0000000000..c369021b5b Binary files /dev/null and b/docs/images/DeveloperGuide/setSuBySemesterCommand_State5.png differ diff --git a/docs/images/DeveloperGuide/setSuBySemesterCommand_activity.png b/docs/images/DeveloperGuide/setSuBySemesterCommand_activity.png new file mode 100644 index 0000000000..e348ddae6b Binary files /dev/null and b/docs/images/DeveloperGuide/setSuBySemesterCommand_activity.png differ diff --git a/docs/images/DeveloperGuide/setSuBySemesterCommand_finalState.png b/docs/images/DeveloperGuide/setSuBySemesterCommand_finalState.png new file mode 100644 index 0000000000..f6a7331d93 Binary files /dev/null and b/docs/images/DeveloperGuide/setSuBySemesterCommand_finalState.png differ diff --git a/docs/images/DeveloperGuide/setSuBySemesterCommand_initialState.png b/docs/images/DeveloperGuide/setSuBySemesterCommand_initialState.png new file mode 100644 index 0000000000..a48d829c1e Binary files /dev/null and b/docs/images/DeveloperGuide/setSuBySemesterCommand_initialState.png differ diff --git a/docs/images/DeveloperGuide/setSuBySemesterCommand_sequence.png b/docs/images/DeveloperGuide/setSuBySemesterCommand_sequence.png new file mode 100644 index 0000000000..33b034fa80 Binary files /dev/null and b/docs/images/DeveloperGuide/setSuBySemesterCommand_sequence.png differ diff --git a/docs/images/PlanNUSBackground.jpg b/docs/images/PlanNUSBackground.jpg new file mode 100644 index 0000000000..1f9d9c4be6 Binary files /dev/null and b/docs/images/PlanNUSBackground.jpg differ diff --git a/docs/images/PlanNUSLogo.png b/docs/images/PlanNUSLogo.png new file mode 100644 index 0000000000..75eb56d861 Binary files /dev/null and b/docs/images/PlanNUSLogo.png differ diff --git a/docs/images/Profile/Harry.jpg b/docs/images/Profile/Harry.jpg new file mode 100644 index 0000000000..062d86cf9d Binary files /dev/null and b/docs/images/Profile/Harry.jpg differ diff --git a/docs/images/Profile/Jerrold.JPG b/docs/images/Profile/Jerrold.JPG new file mode 100644 index 0000000000..8243907e6f Binary files /dev/null and b/docs/images/Profile/Jerrold.JPG differ diff --git a/docs/images/Profile/Vanessa.jpg b/docs/images/Profile/Vanessa.jpg new file mode 100644 index 0000000000..f8314ad64a Binary files /dev/null and b/docs/images/Profile/Vanessa.jpg differ diff --git a/docs/images/Profile/Zihao.jpg b/docs/images/Profile/Zihao.jpg new file mode 100644 index 0000000000..df3723a735 Binary files /dev/null and b/docs/images/Profile/Zihao.jpg differ diff --git a/docs/images/Profile/khenus.jpg b/docs/images/Profile/khenus.jpg new file mode 100644 index 0000000000..10d9ba367e Binary files /dev/null and b/docs/images/Profile/khenus.jpg differ diff --git a/docs/images/UserGuide/Main_Page_Features.png b/docs/images/UserGuide/Main_Page_Features.png new file mode 100644 index 0000000000..98dd640abc Binary files /dev/null and b/docs/images/UserGuide/Main_Page_Features.png differ diff --git a/docs/images/UserGuide/acadplan_capcalcswitch.png b/docs/images/UserGuide/acadplan_capcalcswitch.png new file mode 100644 index 0000000000..824cc9b4ef Binary files /dev/null and b/docs/images/UserGuide/acadplan_capcalcswitch.png differ diff --git a/docs/images/UserGuide/acadplan_details.png b/docs/images/UserGuide/acadplan_details.png new file mode 100644 index 0000000000..d6ed177387 Binary files /dev/null and b/docs/images/UserGuide/acadplan_details.png differ diff --git a/docs/images/UserGuide/acadplan_features.png b/docs/images/UserGuide/acadplan_features.png new file mode 100644 index 0000000000..2cff795130 Binary files /dev/null and b/docs/images/UserGuide/acadplan_features.png differ diff --git a/docs/images/UserGuide/acadplan_help.png b/docs/images/UserGuide/acadplan_help.png new file mode 100644 index 0000000000..ab55dd616f Binary files /dev/null and b/docs/images/UserGuide/acadplan_help.png differ diff --git a/docs/images/UserGuide/acadplan_search_full.png b/docs/images/UserGuide/acadplan_search_full.png new file mode 100644 index 0000000000..2cac129338 Binary files /dev/null and b/docs/images/UserGuide/acadplan_search_full.png differ diff --git a/docs/images/UserGuide/acadplan_search_part.png b/docs/images/UserGuide/acadplan_search_part.png new file mode 100644 index 0000000000..274172d185 Binary files /dev/null and b/docs/images/UserGuide/acadplan_search_part.png differ diff --git a/docs/images/UserGuide/acadplan_viewfull.png b/docs/images/UserGuide/acadplan_viewfull.png new file mode 100644 index 0000000000..a93cb2c8e1 Binary files /dev/null and b/docs/images/UserGuide/acadplan_viewfull.png differ diff --git a/docs/images/UserGuide/acadplan_viewsem.png b/docs/images/UserGuide/acadplan_viewsem.png new file mode 100644 index 0000000000..78b961529c Binary files /dev/null and b/docs/images/UserGuide/acadplan_viewsem.png differ diff --git a/docs/images/UserGuide/add_module.png b/docs/images/UserGuide/add_module.png new file mode 100644 index 0000000000..a74d901233 Binary files /dev/null and b/docs/images/UserGuide/add_module.png differ diff --git a/docs/images/UserGuide/capcalc_acadplanswitch.png b/docs/images/UserGuide/capcalc_acadplanswitch.png new file mode 100644 index 0000000000..be44dc4ac5 Binary files /dev/null and b/docs/images/UserGuide/capcalc_acadplanswitch.png differ diff --git a/docs/images/UserGuide/capcalc_current.png b/docs/images/UserGuide/capcalc_current.png new file mode 100644 index 0000000000..b84c6084eb Binary files /dev/null and b/docs/images/UserGuide/capcalc_current.png differ diff --git a/docs/images/UserGuide/capcalc_features.png b/docs/images/UserGuide/capcalc_features.png new file mode 100644 index 0000000000..2d2b8361f2 Binary files /dev/null and b/docs/images/UserGuide/capcalc_features.png differ diff --git a/docs/images/UserGuide/capcalc_help.png b/docs/images/UserGuide/capcalc_help.png new file mode 100644 index 0000000000..a34ebe9b2a Binary files /dev/null and b/docs/images/UserGuide/capcalc_help.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_module.png b/docs/images/UserGuide/capcalc_set_su_module.png new file mode 100644 index 0000000000..4937d4a7d0 Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_module.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_modules_output1.png b/docs/images/UserGuide/capcalc_set_su_modules_output1.png new file mode 100644 index 0000000000..177d334bcf Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_modules_output1.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_modules_output2.png b/docs/images/UserGuide/capcalc_set_su_modules_output2.png new file mode 100644 index 0000000000..e89c6787ad Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_modules_output2.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_modules_output3.png b/docs/images/UserGuide/capcalc_set_su_modules_output3.png new file mode 100644 index 0000000000..01a62ccaf6 Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_modules_output3.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_semester_output1.png b/docs/images/UserGuide/capcalc_set_su_semester_output1.png new file mode 100644 index 0000000000..004b6661eb Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_semester_output1.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_semester_output2.png b/docs/images/UserGuide/capcalc_set_su_semester_output2.png new file mode 100644 index 0000000000..1d86919541 Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_semester_output2.png differ diff --git a/docs/images/UserGuide/capcalc_set_su_semester_output3.png b/docs/images/UserGuide/capcalc_set_su_semester_output3.png new file mode 100644 index 0000000000..bd5b63476c Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_su_semester_output3.png differ diff --git a/docs/images/UserGuide/capcalc_set_target.png b/docs/images/UserGuide/capcalc_set_target.png new file mode 100644 index 0000000000..911d4aec50 Binary files /dev/null and b/docs/images/UserGuide/capcalc_set_target.png differ diff --git a/docs/images/UserGuide/edit_module.png b/docs/images/UserGuide/edit_module.png new file mode 100644 index 0000000000..972c42bafe Binary files /dev/null and b/docs/images/UserGuide/edit_module.png differ diff --git a/docs/images/UserGuide/edit_module_grade.png b/docs/images/UserGuide/edit_module_grade.png new file mode 100644 index 0000000000..8306a0c3d3 Binary files /dev/null and b/docs/images/UserGuide/edit_module_grade.png differ diff --git a/docs/images/UserGuide/edit_module_semester.png b/docs/images/UserGuide/edit_module_semester.png new file mode 100644 index 0000000000..c12687b644 Binary files /dev/null and b/docs/images/UserGuide/edit_module_semester.png differ diff --git a/docs/images/UserGuide/exit_PlanNUS.png b/docs/images/UserGuide/exit_PlanNUS.png new file mode 100644 index 0000000000..8e242a90d8 Binary files /dev/null and b/docs/images/UserGuide/exit_PlanNUS.png differ diff --git a/docs/images/UserGuide/exit_acadplan.png b/docs/images/UserGuide/exit_acadplan.png new file mode 100644 index 0000000000..b988fa7603 Binary files /dev/null and b/docs/images/UserGuide/exit_acadplan.png differ diff --git a/docs/images/UserGuide/exit_capcalc.png b/docs/images/UserGuide/exit_capcalc.png new file mode 100644 index 0000000000..32c71ef056 Binary files /dev/null and b/docs/images/UserGuide/exit_capcalc.png differ diff --git a/docs/images/UserGuide/file_is_empty.png b/docs/images/UserGuide/file_is_empty.png new file mode 100644 index 0000000000..a2b292cdbc Binary files /dev/null and b/docs/images/UserGuide/file_is_empty.png differ diff --git a/docs/images/UserGuide/file_not_found.png b/docs/images/UserGuide/file_not_found.png new file mode 100644 index 0000000000..64452dc8f3 Binary files /dev/null and b/docs/images/UserGuide/file_not_found.png differ diff --git a/docs/images/UserGuide/module_loaded.png b/docs/images/UserGuide/module_loaded.png new file mode 100644 index 0000000000..ef91f5dc17 Binary files /dev/null and b/docs/images/UserGuide/module_loaded.png differ diff --git a/docs/images/UserGuide/remove_module.png b/docs/images/UserGuide/remove_module.png new file mode 100644 index 0000000000..ef4fbe36b3 Binary files /dev/null and b/docs/images/UserGuide/remove_module.png differ diff --git a/docs/team/harryleecp.md b/docs/team/harryleecp.md new file mode 100644 index 0000000000..78cb999d7c --- /dev/null +++ b/docs/team/harryleecp.md @@ -0,0 +1,29 @@ +# Harry Lee - Project Portfolio Page + +## Overview + +PlanNUS is a desktop application used for planning academic journey in NUS. This provides an offline platform for undergraduates to keep track of their grades and modules taken while also able to find out more information about other modules when drafting their schedules for upcoming semesters. The user interacts with PlanNUS using a CLI and the program is written in Java. + +Given below are my contributions to the project. + +* __New Feature:__ Added the ability to edit the module details within user's modules list. + * What it does: Allows the user to change either the semester at which the selected module is taken, or its grade value. + * Justification: This feature is essential for the user to make amendments to his/her list of modules as the semester and grade may not be made known beforehand. + * Highlights: This feature incorporates functionalities of multiple classes to validate user's input for the values of semester and grade. Moreover, it is necessary to check that the module selected exists within the user's list before changing the details. +* __New Feature:__ Added the ability to remove a module within user's modules list. + * What it does: Allows the user to discard unwanted module(s) within the list. + * Justification: Assuming that the user added wrong module(s) on accident or failed to obtain specific module(s) due to lack of slots, these can be deleted using this feature. + * Highlights: Similar to the previous feature, it is necessary to check that the module to be deleted exists within the user's list such that errors will not occur. +* __New Functionality:__ Created the storage class to save user's selections. + * What it does: Allows the user to save their list of modules into a text file such that he/she does not have to add in the configurations all over again. + * Justification: As this application is meant to provide ease of access for the user's personal academic record, there should be persistent storage for keeping data to be loaded whenever PlanNUS is launched in the CLI. Apart from that user can also access the text file without the need for using the application. + * Highlights: User's list of modules interacts with the sorting class to arrange the modules according to semester before writing to a text file with a simpler format. This increases the efficiency in both loading and saving of the persistent data as it would be easier to read and write. + +* __Code contributed:__ [**Reposense link**](https://nus-cs2113-ay2021s1.github.io/tp-dashboard/#breakdown=true&search=harryleecp&sort=groupTitle&sortWithin=title&since=2020-09-27&timeframe=commit&mergegroup=&groupSelect=groupByRepos&checkedFileTypes=docs~functional-code~test-code~other&tabOpen=true&tabType=authorship&tabAuthor=harryleecp&tabRepo=AY2021S1-CS2113T-F12-1%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code) +* __Documentation:__ + * User Guide: + * Added documentation for the features `edit` and `remove` + * Set up the basic structure of the guide [**#57**](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/57) + * Developer Guide: + * Added implementation info and sequence diagrams for `edit` and `remove` command [**#135**](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/135) + * Added the documentation guide for the project [**#164**](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/164) \ No newline at end of file diff --git a/docs/team/jerroldlam.md b/docs/team/jerroldlam.md new file mode 100644 index 0000000000..0c16810d37 --- /dev/null +++ b/docs/team/jerroldlam.md @@ -0,0 +1,172 @@ +# Jerrold Lam - Project Portfolio Page + +## Overview + +PlanNUS is a greenfield, CLI-based project which aims to solve the gap in undergraduate academic planning in NUS. +It aims to assist students in NUS by providing them an avenue to easily plan their academic calendar, both for the past and the future. The CAP calculator is by far the most convenient implementation as it leverages on existing data in the academic planner to obtain grade statistics, allowing for hassle-free and worry-free calculations. + +### Summary of Contributions + +* Code contributed: [Reposense Link](https://nus-cs2113-ay2021s1.github.io/tp-dashboard/#breakdown=true&search=jerroldlam "Link to contributed code") +* **New Feature:** Added the ability to add modules into their unique academic planner. + * What it does: Allows the user to add a module which is offered by NUS into their academic calendar, one at a time. + * Justification: This feature is one of the core features of PlanNUS and forms the basis of which PlanNUS is built upon. + * Highlights: The implementation of this feature needed to be foolproof and complex to implement as it required multiple interactions with multiple classes in order to validate and properly store the required variables. +* **New Feature:** Added the ability to view modules from a specific semester of the user's academic calendar. + * What it does: Allows the user to view all modules, and their grades from a specific semester that they input. + * Justification: This feature improves PlanNUS significantly as the user need not be overloaded with the information of their whole academic calendar should they only want to view a semester's information. + * Highlights: This enhancement affects the existing view command and needed to be neatly and coherently integrated with the current view command. This required in depth analysis of the possible integration solutions to make the more intuitive program flow for the ease of use for the user. +* **New Functionality:** Created the main object classes to be used in PlanNUS. + * What it does: Through the `Person` and `PartialModule` object classes, PlanNUS is able to store required variables efficiently to be utilised throughout the program. + * Justification: By encapsulating the variables and creating a facade for the private variables, it reduces the risk of a rogue function modifying the variables. This would make our program more robust and reduces the opportunity for bugs to appear. + * Highlights: The implementation of these object classes need to be thought of at a high level as it forms the foundation of the functionality of PlanNUS. This meant that uses cases needed to be thought out to account for the various usage type. These classes also need to be easily modifiable as the classes can be easily augmented to encapsulate more data should the program require. +* **New Functionality:** Created the parser class to be used in the academic planner app. + * What it does: Processes user input data and returns the correct command to be executed. + * Justification: Raises the coding standard of the PlanNUS code base as more object-oriented-programming can be implemented. + * Highlights: The parser needs to be able to handle all sorts of output and handle them gracefully without fail. Hence, much thought was put into designing the parser to account for the various possible different inputs. + * Credits: Referenced from teammate Khenus's app parser. +* **New Functionality:** Added `ModuleValidator` class to easily validate inputs from user. + * What it does: Easily validates critical information such as Module Codes, Semester indexes and Grade values. + * Justification: This enhances the credibility of PlanNUS by rejecting random inputs, maintaining the data integrity of the information that will be stored in PlanNUS. + * Highlights: As there are many parameters that need to be verified, careful implementation of the verification methods is conducted. This forms the core of PlanNUS' data integrity checks, as a mistake here would result in unintended values to be accepted as valid. +* **New Functionality:** Added `LoggingTool` class to easily initialise a `Logger` for use within PlanNUS. + * What it does: Easy initialisation of `Logger` to assist in logging the runtime execution of PlanNUS. + * Justification: Logging will be widely used in PlanNUS to assist in tracking its events, hence by creating this class, developers can easily initialise a standardised logger which will output `.log` files for the developer to understand what is going on in the program. + * Highlights: Following careful consideration of how logging will be used, the parameters are set up to allow different codes to easily log without requiring a huge chunk of code to initialise it. +* **New Functionality:** Support retaking of modules. + * [#253](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/253) +* **Documentation** + * User Guide + * Added documentation for `AddModuleCommand` + * [#37](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/37) + * Added Overview and introduction to user guide + * [#137](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/152) + * Wrote appendix for relevant information regarding NUS modules and semester indexes + * [#57](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/57) + * Developer Guide + * Added documentation for `AddModuleCommand` and its flow in the program + * [#114](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/114) + * Added details of the `Ui` class + * [#172](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/172), [#175](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/175) + * Added Logging guide + * [#130](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/130) +* **Team-Based Tasks** + * Set up Team Organisation and Team Repository + * Maintained issue tracker on the team's repository + * Made necessary code quality enhancements + * [#36](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/59) ,[#65](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/65), [#100](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/100), [#101](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/101), [#262](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/262), [#275](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/275) + * Resolved coding standard violations + * Made numerous bug fixes for the code and found bugs to be resolved + * [#43](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/43), [#59](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/59), [#72](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/72), [#103](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/103), [#111](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/111), [#115](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/115), [#127](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/127), [#147](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/147), \ + [#170](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/170), [#220](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/220), [#222](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/222), [#255](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/255), [#314](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/314) +* **Contributions to the User Guide (Extracts without pictures)** + * Semester Naming Conventions + * For the purpose of this planning software, we have decided to limit the maximum number of semesters an undergraduate can take to 10, which is equivalent to 5 academic years. Each semester is indexed by an integer between 1 and 10. For a fresh undergraduate, they will begin at semester index of 1. For a year 3 student who is currently in semester 1, the semester index will be 5. Below is a table which illustrates the corresponding semester indexes for undergraduates. + + | Academic Year | Semester (as of Academic Year) | Semester Index | + | :-----------: | :----------------------------: | :------------: | + | 1 | 1 | 1 | + | 1 | 2 | 2 | + | 2 | 1 | 3 | + | 2 | 2 | 4 | + | 3 | 1 | 5 | + | 3 | 2 | 6 | + | 4 | 1 | 7 | + | 4 | 2 | 8 | + | 5 | 1 | 9 | + | 5 | 2 | 10 | + * Grade Value Covention + * As per NUS [Grade Policy](http://www.nus.edu.sg/registrar/academic-information-policies/undergraduate-students/modular-system "NUS Official Site"), letter grades will have a corresponding Academic Point attached to them. Special cases such as Satisfactory/Unsatisfactory (SU) grades can be captured by our software as well. Below is a table of grades and their corresponding grade value. Do note that the grades of forecasted modules should be declared as NT, short for Not Taken. + + | Grade | Academic Points | + | :-------------------------: | :-------------: | + | A+ | 5.0 | + | A | 5.0 | + | A- | 4.5 | + | B+ | 4.0 | + | B | 3.5 | + | B- | 3.0 | + | C+ | 2.5 | + | C | 2.0 | + | D+ | 1.5 | + | D | 1.0 | + | F | 0.0 | + | Additional Grading Options* | - | + + *Additional Grading options include S,U,CS,CU,IC,IP,AUD,EXE,W,WU. They hold no Academic Point Value. + * Introduction + * Hello user of PlanNUS! Welcome to our user guide for our software. In this user guide, you can find information regarding how to use PlanNUS and the common questions asked with regards to the usage of PlanNUS. We hope you find this software + useful and we wish you all the best for your academic journey in NUS. + * PlanNUS is a __desktop application for planning academic journey__ with modules offered by National University of Singapore (NUS). The __Command Line Interface (CLI)__ will be required for the program to work. + + PlanNUS aims to patch the gap for students in NUS by providing an avenue for students to plan their full academic journey in NUS. + + PlanNUS can also generate CAP statistics and even suggest to user which modules to mark as satisfactory/unsatisfactory(S/U) to have the highest CAP possible. + + PlanNUS also has saving and loading features which would reduce the hassle of entering the full academic calendar for each use. + + The sections below explain how PlanNUS should be used, and the common errors faced by users. Sections can be easily navigated to by clicking on the hyperlinks in the table of contents. +* **Contributions to the Developer Guide (Extracts without pictures)** + * Implementation for `AddModuleCommand` + * Add module command is executed by `AcademicPlannerParser`. It allows users to add modules into their Academic Planner by instantiating a new `PartialModule` object and adding it into the `userModuleList` and `userModuleMap`. Both the list and hashmap are the _java API_, which are used by importing them. The `Person` object is used to encapsulate both `userModuleList` and `userModuleMap`. + + Additionally, the add module command extends the `Command` class and overrides its `execute()` command. An external class, `ModuleValidator` is called upon to validate the various parameters that the user has entered, as to only allow valid modules to be added to the user. + + Given below is an example usage scenario and how add module command behaves at each step. + + __Step 1__ : The user calls the add module command from the `AcademicPlannerParser`, which will initialise a + `AddModuleCommand`. `AddModuleCommand`'s constructor takes in parameters of `ModuleLoader`, `Person`,`Ui`, + and `String`. Below is a table of what each parameter corresponds to in the state diagram of the program. + + |Parameter
(Class Name)|Corresponds to
(Function of Class)|Referred to as
(Variable Name)| + |:---:|:---:|:---:| + |`ModuleLoader`| Class representing all modules offered by NUS | `allModules` | + |`Person`| Class representing current user's information | `currentPerson`| + |`Ui`| Class representing java's default scanner class | `in`| + |`String` | Class representing the module code to be added | `moduleCode`| + + __Step 2__ : `execute()` is called from the instance of `AddModuleCommand`. It can throw `AcademicException` + or `IOException`. `FileHandler` and `Logger` classes from the _java API_ are instantiated to handle logging for the remainder of the `execute()` method. + + __Step 3__ : `in` then reads in the next two lines of input, which is the user's input for the desired semester for the `moduleCode` and `moduleCode`'s grades. + + __Step 4__ : `validateInputs()` is called from `ModuleValidator` to validate the user entered data against `allModules`. + + __Step 5__ : `AddUtils` is called upon to return module credit for `moduleCode` by `getModuleCreditForModule()`. + + __Step 6__ : `AddUtils` is called upon again to add the module's data to the user, by instantiating a new + `PartialModule` and storing it in both `userModuleList` and `userModuleMap` via `Person`. + + __Step 7__ : `FileHandler`, `Logger`, `PartialModule`, `ModuleValidator`, `AddUtils` and `AddModuleCommand` are terminated. + + The following sequence diagram shows how the `AddModuleCommand` works: + + The following activity diagram summarizes what happens when the user executes a `AddModuleCommand` : + + * Design Considerations + * Option 1 (Current Implementation): Implementing each command as a class by itself + * Pros: Increases modularity of code, higher overall code quality + * Cons: More complicated to implement + * Option 2: Implementing each command as a method in a class + * Pros: Easier to implement + * Cons: Class needs to be instantiated and increases coupling, reducing testability. This method also decreases SLAP. + + * Logging guide + * `LoggingTool` is available to use for accessible logging at the package `src.main.java.seedu.duke.global`. `LoggingTool` + constructor takes in a parameter `String` and `FileHandler`. `String` represents `loggerName` and `FileHandler` represents + the object `fh`, which is the _java API_. `initialise()` will automatically return a fully configured `Logger` object + with the following parameters : + + * `addHandler(fh)` + * `logger` will log to an external file as defined by `fh` + * `setUseParentHandlers(false)` + * Disables logging on the console output + * `setLevel(Level.INFO)` + * Any message logged `Level.INFO` and above will be logged + + After initialising, the `logger` can be used as per _java API_ constraints. Below shows an example code snippet that can be used to initialise a `logger`: + + ``` + FileHandler fh = new FileHandler(); + Logger logger = new LoggingTool(,fh).initialize(); + ``` \ No newline at end of file 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/juzihao.md b/docs/team/juzihao.md new file mode 100644 index 0000000000..535f8dc587 --- /dev/null +++ b/docs/team/juzihao.md @@ -0,0 +1,43 @@ +# Ju Zihao - Project Portfolio Page + +## Overview + +PlanNUS is a greenfield, CLI-based project which aims to solve the gap in undergraduate academic planning in NUS. +With the Academic Calendar Planner, PlanNUS will be able to assist undergraduate students in forecasting their academic journey for their 4 or 5 years in NUS. +With the CAP Calculator, PlanNUS will be able to tell you your current CAP, forecast future grades needed to achieve your target CAP and even provide suggestions on S/U modules to achieve the best CAP possible. +With PlanNus, we aim to provide an one-stop solution to some of the most common problems that NUS students will face in their academic curriculum. + +### Summary of Contributions + +* [Code Contributed](https://nus-cs2113-ay2021s1.github.io/tp-dashboard/#breakdown=true&search=Zihao&sort=groupTitle&sortWithin=title&since=2020-09-27&timeframe=commit&mergegroup=&groupSelect=groupByRepos&checkedFileTypes=docs~functional-code~test-code~other&tabOpen=true&tabType=authorship&zFR=false&tabAuthor=JuZihao&tabRepo=AY2021S1-CS2113T-F12-1%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code) +* **New Feature:** Added the ability to view the user's current CAP, graded MCs and total MCs. + * What it does: Allows the user to display his or her current CAP, graded MCs and total MCs after adding some modules inside Academic Planner. + * Justification: This feature is the basic feature for CAP Calculator and it provides the details user needed for the rest of the other features. + * Highlights: The implementation of this feature was initally set to have a time complexity of O(n) where n is the number of moudules that the user has added. The time complexity is then improved to be O(1) after some updates. + * Credits: Improvements are made due to Khenus's `CalculatorUtils`. + +* **New Feature:** Added the ability to set a target CAP given some graded MCs. + * What it does: Informs the user what his or her CAP have to be for a given graded MCs in order to achieve his or her target CAP. + * Justification: This feature is allows the user to plan for upcoming semester or even for the rest of his or her university curriculum. + * Highlights: This enhancement takes CAP and MC information that is provided by the user in Acadamic Planner. Thus, it is important that this enhancement is extracting the correct information for its purpose to avoid a wrongly displayed result. + +* **New Feature:** Added the ability to provide suggestion on S/U to users. + * What it does: Provide details on what modules to S/U in order to achieve the highest CAP possible. + * Justification: This feature is allows the user to plan for S/U modules after result release. + * Highlights: This enhancement is affected by the module list in the `Person` object. Thus, it is cruicial to filter out modules that cannot be S/Ued to provide user with the correct information and suggestion that allows them to achieve the best CAP. + +* **Documentation** + * User Guide + * Added documentation for features `set target` and `set su`. [#16](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/16) + * Developer Guide + * Added documentation for `set su` commands and its flow. [#89](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/89) + * Added documentation for `CurrentCommand` and its flow. [#296](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/296) + * Added documentation for Glossary. [#177](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/171) + * Added documentation for Configuration Guide. + * Added use cases for CAP Calculator commands. [#273](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/273) + + +* **Team-Based Tasks** + * Made bug fixes to the code and bugs to be resolved. + * [#25](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/25), [#38](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/38), [#71](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/71), [#107](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/107), [#162](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/162), [#184](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/184), [#185](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/185), [#194](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/194), [#195](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/195), [#202](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/202), [#203](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/203), [#216](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/216) , [#217](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/217) + * Improve code quality and standards. [#45](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/45) diff --git a/docs/team/khenus.md b/docs/team/khenus.md new file mode 100644 index 0000000000..bff962417f --- /dev/null +++ b/docs/team/khenus.md @@ -0,0 +1,136 @@ +# Khenus Tan - Project Portfolio Page + +## Overview + +PlanNUS is a CLI-based project which aims to provide a centralised solution for NUS student to plan their Academic Journey. It provides important applications such as Academic Planner and CAP Calculator to assist students. + +### Summary of Contributions + +* Code contributed: [Reposense Link](https://nus-cs2113-ay2021s1.github.io/tp-dashboard/#breakdown=true&search=khenus&sort=groupTitle&sortWithin=title&since=2020-09-27&timeframe=commit&mergegroup=&groupSelect=groupByRepos&checkedFileTypes=docs~functional-code~test-code~other "Link to contributed code") +* **New Feature:** Added the ability to navigate between different apps within PlanNUS. + * What it does: Allow users to select between Academic Planner or CAP Calulator at any point while using PlanNus. + * Justification: This feature allow users to fully utilise all other features offered by PlanNUS with great ease. It also serve as an entry point for **users** when using PlanNUS. + * Highlights: This feature handles the flow of data within PlanNUS to provide users with the ability to toggle between apps seamlessly. It also ensures proper allocation and usage of memory space to prevent unexpected crashes due to memory leak. +* **New Functionality:** Created a JavaScript program to clean up all module information retrieve from NUSMODS API. + * What it does: Removal of extra information and reformatting needed information to allow for ease of conversion from Javascript Object Notation (JSON) to Plain Old Java Object (POJO). + * Justification: The creation of this program is to assist in removing irrelevant data and reformatting nested objects from all 12436 modules within the JSON file retrieved from NUSMODS API to improve both spatial and temporal efficiencies during the eventual conversion of JSON into POJO in PlanNUS. + * Highlights: This program allows for the formatting of specific output fields, removal of irrelevant information from the final list, counting of total number of modules offered, finding the length of the longest module name, the minimum MC across all modules offered and searching of a specific module within the final list. +* **New Functionality:** Creation of `ModuleLoader` class + * What it does: The `ModuleLoader` class allows for the creation of a POJO and HashMap from the formatted JSON file containing all NUS module information using GSON library from Google. + * Justification: This class creates an ArrayList named `allModules` for fellow developers to access module information when needed. It also creates a HashMap named `moduleMap` that stores the Module Code and the index of said module in `allModules`. This allows for efficient retrieval of module information from `allModules`. + * Highlights: This implementation allows for near *o(1)* access of the huge `allModules` array with 12436 entries, preventing PlanNUS from feeling sluggish. +* **New Functionality:** Creation of `AppParser` class + * What it does: The `AppParser` class parses user input and starts the correct application for users. `AppParser` also handles the passing of user data between different application. + * Justification: This class is created to allow for new applications to be added into PlanNUS easily. It also allows for formatting of user input before it is verified against the list of known command and acts as a centralised entry point for their individual applications. +* **New Functionality:** Creation of `Ui` class + * What it does: This class acts as an interface between the user and PlanNUS. It is also responsible to initialising a single `Scanner` class to be shared across the whole of PlanNUS. + * Justification: A unified `Scanner` class is needed to prevent multiple unclosed streams from causing unexpected `EOF` errors. +* **New Functionality:** Creation of `CalculatorUtils` class + * What it does: This class updates user's CAP after each module operation such as `add`, `edit` and `remove` + * Justification: This calculation is needed after each operation to ensure that the current CAP of the user is updated. It also prevents miscalculation of CAP due to Special Grades such as SU. + * Highlights: These operations improves overall efficiency of CAP Calculator as these operation execute within *o(1)* time and allows `current` command in CAP Calculator to be *o(1)*. +* **New Functionality:** Creation of `FieldValidator` class + * What it does: `FieldValidator` is responsible for ensuring that each entry from the save file is valid. It also gives information regarding which specific field within that entry is corrupted. + * Justification: This class is needed to ensure that corrupted entries within the save file can be handled by PlanNUS gracefully. +* **New Functionality:** Creation of `App`, `Command`, and `FullModule` classes in `global` folder + * What it does: These classes are essential as it forms the parent class for every App and Command within PlanNUS. The `FullModule` class is responsible for storing information of each module after being converted into POJO by GSON. + * Justification: These classes are created to ensure that every App and Command within PlanNUS follows a certain format to allow for ease of adaptation into `main`. +* **New Functionality:** Creation of `SharedUtils` class + * What it does: This class contains all helper methods to allow for further validation of inputs during `add`, `edit` and `remove` command. + * Justification: This is done such that PlanNUS is able to support the retaking of modules that our users had initially failed. +* **Documentation** + * User Guide + * Took and formatted all images [#159](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/159), [#251](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/251) + * Proofreading of User Guide + * Developer Guide + * Added documentation for Architecture, Overview: PlanNUS, Project Structure and Lifecycle of PlanNUS [#105](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/105), [#141](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/141), [#142](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/142), [#143](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/143), [#144](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/144), [#145](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/145) + * Proofreading of Developer Guide +* **Team-Based Tasks** + * Reviewing and accepting most pull requests. + * Setting up Gradle with extra dependencies, namely Apache Commons and GSON. [#2](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/2) + * Made code quality enhancements [#34](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/34), [#98](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/98) + * Created templates for standardisation of coding format across PlanNUS [#42](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/42), [#53](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/53) + * Efficiency improvements across PlanNUS [#85](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/85) + * General Bug Fixes [#33](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/33), [#117](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/117), [#261](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/261), [#274](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/274), [#291](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/291), [#316](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/316), [#318](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/318) + * Release Management ([V2.0](https://github.com/AY2021S1-CS2113T-F12-1/tp/releases/tag/V2.0)) +* ***Note that the Contributions for User Guide cannot be extracted as it spans the whole document*** +* **Contributions to the Developer Guide (Extract)** + +## 3. Design + +### 3.1. Architecture + +
+ Architecture diagram of PlanNUS +
+ + +The ***Architecture Diagram*** given above explains the high-level design of PlanNUS. Below is a quick overview of each component. + +
+ +### 3.2. Overview + +#### 3.2.1. PlanNus + +`PlanNus` class contains the `main` and `run` method, which is responsible for + + * At launch + + * Loading all modules for AY2020/21 into PlanNUS + + * Loading previous save file into PlanNUS if available + + * Creation of entry point to available apps in PlanNUS + + * While running + + * Continuously prompt user for app selection + + * At shut down + + * Saving of user data into save file + * Clean up methods where necessary + +
+ +#### 3.2.2. Global, Ui, Parser, Storage, Apps + +* The `global` package contains classes, exceptions and objects that are required across the whole app. +* The `ui` package contains the class that is responsible for sharing one `scanner` class across the whole app to prevent multiple IO streams +* The `parser` package contains the class that handles user's app selection +* The `storage` package handles loading and saving of user's data to a save file. +* Packages for Available apps such as Academic Planner and CAP Calculator are stored within `apps` package + +
+ +### 3.3. Project Structure + +Each package in the PlanNUS as given above follows the following file structure where applicable: + +* A functional class that acts as the entry point to that module +* A parser class that parses user input into executable commands by PlanNUS + +* `commands`: A package that handles all executable commands given by parser +* `commons`: A package with the utilities and shared classes across the parent package +* `exceptions`: A package to handle all exceptions thrown across the parent package + +The interaction within each package should ideally be as shown below. + +
+ Architecture diagram for ideal project structure in PlanNUS +
+ +*Note that while this is the ideal case, packages such as* `global`, `parser` *and* `ui` *might not strictly follow this structure due to these package serving a different function altogether (Refer to the sections below for more details.)* + +
+ +### 3.4. Life cycle of PlanNUS + +The [*sequence diagram*](#sequence-diagram) below shows how different packages and classes interact with each other throughout the whole [life cycle](#life-cycle) of PlanNUS. + +
+ Sequence diagram for lifecycle of PlanNUS +
+ +
diff --git a/docs/team/vanessa-kang.md b/docs/team/vanessa-kang.md new file mode 100644 index 0000000000..70800b28df --- /dev/null +++ b/docs/team/vanessa-kang.md @@ -0,0 +1,173 @@ +## Vanessa Kang - Project Portfolio Page + +## Project: PlanNUS + +PlanNUS is a greenfield, CLI-based project which aims to solve the gap in undergraduate academic planning in NUS. PlanNUS removes the need for Excel sheets and CAP calculator websites by bundling their functionalities, and more, into two key apps: the _Academic Planner_ and _CAP Calculator_. + +The _Academic Planner_ assists students in planning out their academic calendar for the entire duration (4-5 years) of their NUS candidature. It provides students with a convenient interface to keep track of the modules that they have taken, or are planning to take, along with the associated semester and grade information. + +The _CAP Calculator_ then makes use of this existing data to calculate students' current CAP. This helps students to accurately monitor, and even forecast, their academic performance. + +Given below are my contributions to the project. + +
+ +- **Code contributed:** [RepoSense Link](https://nus-cs2113-ay2021s1.github.io/tp-dashboard/#breakdown=true&search=vanessa-kang&sort=groupTitle&sortWithin=title&since=2020-09-27&timeframe=commit&mergegroup=&groupSelect=groupByRepos&checkedFileTypes=docs~functional-code~test-code~other) +- **New Feature:** Added the ability to view all modules in the user's academic calendar. + - What it does: Allows users to view all the modules - together with their associated grades, and sorted by semester - that are currently in their academic calendar. + - Justification: This feature gives users a clear overview of all the modules that they have taken (or plan to take), which will aid users greatly when planning their academic journey. +- **New Feature:** Added the ability to view the details of a specific module. + + - What it does: Allows users to view detailed information about a specific module, such as semesters offered, prerequisites, and preclusions. + + - Justification: Users who need to quickly look up crucial information about specific modules can do so within PlanNUS itself, eliminating the need to toggle between PlanNUS and an external search window. + + - Highlights: While formatting the module information for printing, two things needed to be taken into consideration: + + 1. What information do students actually find useful? And + 2. How to lay out these details in a clear, unambiguous manner? + + Otherwise, this feature would potentially cause students even more confused than before. +- **New Feature:** Added the ability to search for modules that contain a specific keyword. + - What it does: Allows users to input a keyword, then searches the module database for modules that contain this keyword. Currently, it only searches based on module code, and displays only the first 10 results. + - Justification: If users are unsure of the full code of a certain module, this feature would be a handy tool to jog their memory. + +- **Documentation:** + - User Guide: + - Added documentation for `details` and `search` ([#132](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/132)) + - Formatting and proofreading of User Guide ([#132](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/132), [#241](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/241), [#242](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/242), [#305](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/305), [#312](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/312)) + - Developer Guide: + - Added documentation for `ModuleDetailsCommand` ([#173](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/173)) + - Added use cases for _Academic Planner_ features ([#236](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/236)) + - Added instructions for manual testing ([#245](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/245), [#289](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/289)) + - Formatting and proofreading of Developer Guide ([#242](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/242), [#312](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/312)) +- **Team-based tasks:** + + - General bug fixes ([#238](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/238)) + - Alerted teammates to bugs that needed fixing (e.g. [#103](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/103), [#288](https://github.com/AY2021S1-CS2113T-F12-1/tp/pull/288), [#307](https://github.com/AY2021S1-CS2113T-F12-1/tp/issues/307)) +- **Review contributions:** + + - PRs reviewed (with non-trivial review comments): + - iP: [#15](https://github.com/nus-cs2113-AY2021S1/ip/pull/15), [#154](https://github.com/nus-cs2113-AY2021S1/ip/pull/154) + - tP: [#26](https://github.com/nus-cs2113-AY2021S1/tp/pull/26), [#68](https://github.com/nus-cs2113-AY2021S1/tp/pull/68), [PE dry run](https://github.com/vanessa-kang/ped/issues) + +
+ +- **Contributions to the User Guide (Extracts):** + + #### 6.1.4. Viewing the details of a module: `details` + + + + This command is for you to view the detailed information of a particular module. + + Input format: `details ` + + Example of usage: + + - `details CS2101` + - `DETAILS cs2113t` + +
+ +
+ + As shown in the image, you can input the module that they wish to view further details about. + + __Caution:__ + + - No information will be printed if the module is not offered by NUS. + +
+ + #### 6.1.5. Searching for module codes containing a keyword: `search` + + This command is for when you are unsure of the full module code. + + Input format: `search ` + + Example of usage: + + - `search CS21` + - `SEARCH cg4002` + +
+ +
+ +
+ +
+ + As shown above, you can enter a search key that contains either part of, or the whole module code. + + __Caution:__ + + - This feature currently only supports searching by module code. + - Only up to the first 10 results are displayed. + +
+ +- **Contributions to the Developer Guide (Extracts):** + + ### 4.4. Academic Calendar Planner: View Module Details Feature + + + + #### 4.4.1. Current implementation + + View module details command is executed by `AcademicPlannerParser`. It allows the user to view the full details of any module offered by NUS, by accessing the specified `FullModule` object that corresponds to the module code entered by the user, and printing its attributes. + + Additionally, the view module details command extends the `Command` class and overrides its `execute()` command. An external class, `ModuleValidator` is called upon to validate the module code that the user has entered, as only the details of valid NUS modules can be displayed. + + Given below is an example usage scenario and how view module command behaves at each step. + +
+ Initial state diagram for Module Details Command +
+ + + __Step 1:__ The user calls the view module details command from the `AcademicPlannerParser`, which will initialise a `ModuleDetailsCommand`. `ModuleDetailsCommand`'s constructor takes in parameters of `ModuleLoader` and `String`. Below is a table of what each parameter corresponds to in the state diagram of the program. + +| Parameter
(Class Name) | Corresponds to
(Function of Class) | Referred to as
(Variable Name) | +| :-------------------------: | :----------------------------------------------------: | :---------------------------------: | +| `ModuleLoader` | Class representing all modules offered by NUS | `allModules` | +| `String` | Class representing the module code to print details of | `moduleCode` | + +__Step 2:__ `execute()` is called from the instance of `ModuleDetailsCommand`. It can throw `AcademicException`. + +__Step 3:__ `validateModuleCode()` is called to validate the user input, `moduleCode`, against `allModules`. + +__Step 4:__ `PrintUtils` is called to print the details of the module. + +
+ Final state diagram for Module Details Command +
+ + + + +__Step 5:__ `ModuleDetailsCommand`, `ModuleLoader` and `PrintUtils` are terminated. + + + +The following sequence diagram shows how `ModuleDetailsCommand` works. + +
+ +
+ + + +The following diagram summarizes what happens when the user executes a `ModuleDetailsCommand`: + +
+ Activity diagram for View Module Details Command +
+ + + + + + + diff --git a/src/main/java/META-INF/MANIFEST.MF b/src/main/java/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..593f8abf3a --- /dev/null +++ b/src/main/java/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: seedu.duke.PlanNus + diff --git a/src/main/java/seedu/duke/Duke.java b/src/main/java/seedu/duke/Duke.java deleted file mode 100644 index 5c74e68d59..0000000000 --- a/src/main/java/seedu/duke/Duke.java +++ /dev/null @@ -1,21 +0,0 @@ -package seedu.duke; - -import java.util.Scanner; - -public class Duke { - /** - * Main entry-point for the java.duke.Duke application. - */ - 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?"); - - Scanner in = new Scanner(System.in); - System.out.println("Hello " + in.nextLine()); - } -} diff --git a/src/main/java/seedu/duke/PlanNus.java b/src/main/java/seedu/duke/PlanNus.java new file mode 100644 index 0000000000..fe69a0bbaa --- /dev/null +++ b/src/main/java/seedu/duke/PlanNus.java @@ -0,0 +1,103 @@ +package seedu.duke; + +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.App; +import seedu.duke.global.objects.Person; +import seedu.duke.parser.AppParser; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +import java.io.File; + +import static seedu.duke.parser.AppParser.MENU_PAGE; + +//@@author Khenus +/** + * Class representing main function of PlanNUS. + */ +public class PlanNus { + private Ui ui; + private ModuleLoader allModules; + private Person currentPerson; + private Storage storage; + private boolean isExit; + + /** + * Default constructor for PlanNus. + */ + public PlanNus() { + try { + this.ui = new Ui(); + this.allModules = new ModuleLoader(); + this.currentPerson = new Person("Bob"); + this.storage = new Storage(allModules); + isExit = false; + } catch (Exception e) { + isExit = true; + System.out.println(e.getMessage()); + } + } + + /** + * Main entry function for PlanNUS. + */ + public void run() { + assert isExit : "Startup is unsuccessful"; + + File file = new File("logs"); + boolean isDirectoryCreated = file.mkdirs(); + if (!isDirectoryCreated) { + System.out.println("Failed Creating logs Directory"); + } + + boolean isChangeApp = false; + int currentApp = MENU_PAGE; + + ui.printLine(); + storage.loader(currentPerson); + + ui.showWelcomeMessage(); + + while (!isExit) { + try { + App selectedApp; + + if (isChangeApp) { + selectedApp = AppParser.specialParse(currentApp, allModules, currentPerson, ui, storage); + isChangeApp = false; + currentApp = MENU_PAGE; + } else { + ui.showAwaitCommand(); + ui.printLine(); + String userInput = ui.getScanner().nextLine(); + selectedApp = AppParser.parse(userInput, allModules, currentPerson, ui, storage); + } + + selectedApp.run(); + + isExit = selectedApp.getIsExit(); + isChangeApp = selectedApp.getIsChangeApp(); + currentApp = selectedApp.getCurrentApp(); + + if (!isExit && !isChangeApp) { + ui.printLine(); + ui.showWelcomeBackMessage(); + } + } catch (Exception e) { + System.out.println(e.getMessage()); + } + } + + ui.closeScanner(); + storage.saver(currentPerson); + ui.showExitMessage(); + } + + /** + * Main executable code. + * @param args arguments from command line + */ + public static void main(String[] args) { + new PlanNus().run(); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/AcademicPlannerApp.java b/src/main/java/seedu/duke/apps/academicplanner/AcademicPlannerApp.java new file mode 100644 index 0000000000..28ff3f31a3 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/AcademicPlannerApp.java @@ -0,0 +1,97 @@ +package seedu.duke.apps.academicplanner; + +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.App; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +import static seedu.duke.parser.AppParser.ACADEMIC_PLANNER; + +//@@author Khenus +/** + * Class representing the Academic Planner Application. + */ +public class AcademicPlannerApp extends App { + private static final String NEW_LINE = "\n"; + private static final String WELCOME_MESSAGE = "Welcome to Academic Planner!"; + private static final String EXIT_MESSAGE = "Thank you for using Academic Planner!"; + private static final String COMMANDS_LIST = "Available commands are:\n" + + "\tadd \n" + + "\tedit \n" + + "\tremove \n" + + "\tdetails \n" + + "\tsearch \n" + + "\tcapcalc\n" + + "\tview\n" + + "\thelp\n" + + "\texit"; + + private final ModuleLoader allModules; + private final Person currentPerson; + private Ui ui; + private Storage storage; + + /** + * Default constructor for Academic Planner App. + * + * @param allModules all modules offered by NUS + * @param currentPerson current user + * @param ui ui of PlanNUS + */ + public AcademicPlannerApp(ModuleLoader allModules, Person currentPerson, Ui ui, Storage storage) { + this.allModules = allModules; + this.currentPerson = currentPerson; + this.ui = ui; + this.storage = storage; + } + + /** + * Main entry point for the Academic Planner Application. + */ + public void run() { + ui.printLine(); + showWelcomeMessage(); + boolean isExit = false; + + while (!isExit) { + try { + ui.showAcademicAwaitCommand(); + ui.printLine(); + String userInput = ui.getScanner().nextLine(); + Command commandInput = AcademicPlannerParser.parse(userInput, allModules, currentPerson, ui, storage); + commandInput.execute(); + + if (commandInput.getIsChangeApp()) { + setIsChangeApp(commandInput.getIsChangeApp()); + setCurrentApp(commandInput.getNewApp()); + } else { + setIsChangeApp(false); + setCurrentApp(ACADEMIC_PLANNER); + } + + isExit = commandInput.getIsExit(); + } catch (Exception e) { + System.out.println(e.getMessage()); + } + } + ui.printLine(); + showExitMessage(); + } + + /** + * Prints welcome message for Academic Planner. + */ + private void showWelcomeMessage() { + System.out.println(WELCOME_MESSAGE + NEW_LINE); + System.out.println(COMMANDS_LIST); + } + + /** + * Prints exit message for Academic Planner. + */ + private void showExitMessage() { + System.out.println(EXIT_MESSAGE); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/AcademicPlannerParser.java b/src/main/java/seedu/duke/apps/academicplanner/AcademicPlannerParser.java new file mode 100644 index 0000000000..3714231424 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/AcademicPlannerParser.java @@ -0,0 +1,164 @@ +package seedu.duke.apps.academicplanner; + +import seedu.duke.apps.academicplanner.commands.AddModuleCommand; +import seedu.duke.apps.academicplanner.commands.EditModuleCommand; +import seedu.duke.apps.academicplanner.commands.RemoveModuleCommand; +import seedu.duke.apps.academicplanner.commands.SearchModulesCommand; +import seedu.duke.apps.academicplanner.commands.ModuleDetailsCommand; +import seedu.duke.apps.academicplanner.commands.PrintCalenderCommand; +import seedu.duke.apps.academicplanner.commands.PrintHelpCommand; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.Command; +import seedu.duke.global.exceptions.CommandParserException; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +import java.util.Scanner; + +import static seedu.duke.parser.AppParser.CAP_CALCULATOR; + +//@@author jerroldlam +/** + * Class representing the parser for the academic parser. Used in the academic parser app. + */ +public class AcademicPlannerParser { + private static final int COMMAND_INDEX = 0; + private static final int MODULE_CODE_INDEX = 1; + private static final int CORRECT_COMMAND_LENGTH = 2; + public static final String NEW_LINE = "\n"; + private static final String EXITING_CURRENT_COMMAND = "Exiting current command back to Academic Planner Main Menu."; + private static final String ERROR_INVALID_COMMAND = "INVALID COMMAND"; + private static final String ERROR_NO_PARAMETER = " NO PARAMETER AFTER COMMAND"; + private static final String ERROR_HAS_PARAMETER = " NO PARAMETER ALLOWED AFTER COMMAND"; + private static final String ERROR_IN_ACADPLAN = "Sorry, you are already in Academic Planner!"; + private static final String ADD_COMMAND = "ADD"; + private static final String EDIT_COMMAND = "EDIT"; + private static final String REMOVE_COMMAND = "REMOVE"; + private static final String VIEW_COMMAND = "VIEW"; + private static final String SEARCH_COMMAND = "SEARCH"; + private static final String HELP_COMMAND = "HELP"; + private static final String EXIT_COMMAND = "EXIT"; + private static final String DETAILS_COMMAND = "DETAILS"; + private static final String ACADEMIC_PLANNER_COMMAND = "ACADPLAN"; + private static final String TO_CAP_CALCULATOR_COMMAND = "CAPCALC"; + + /** + * Command to process the user inputs and to return the intended command with the correct parameters. + * + * @param userInput input of user + * @param allModules data of all modules offered by NUS + * @param currentPerson person using the app + * @param ui ui for output + * @return Command to be executed + * @throws CommandParserException to return with error message + */ + public static Command parse(String userInput, ModuleLoader allModules, Person currentPerson, Ui ui, Storage storage) + throws CommandParserException { + + String[] inputs = processInput(userInput.trim()); + String userCommand = inputs[COMMAND_INDEX]; + Scanner in = ui.getScanner(); + + if (userCommand.equals(ADD_COMMAND) && hasParameter(inputs)) { + return new AddModuleCommand(allModules, currentPerson, ui, inputs[MODULE_CODE_INDEX].trim(), storage); + + } else if (userCommand.equals(EDIT_COMMAND) && hasParameter(inputs)) { + return new EditModuleCommand(allModules, currentPerson, ui, inputs[MODULE_CODE_INDEX].trim(), storage); + + } else if (userCommand.equals(REMOVE_COMMAND) && hasParameter(inputs)) { + return new RemoveModuleCommand(allModules, currentPerson, ui, inputs[MODULE_CODE_INDEX].trim(), storage); + + } else if (userCommand.equals(VIEW_COMMAND) && hasNoParameter(inputs)) { + return new PrintCalenderCommand(currentPerson, in); + + } else if (userCommand.equals(HELP_COMMAND) && hasNoParameter(inputs)) { + return new PrintHelpCommand(); + + } else if (userCommand.equals(DETAILS_COMMAND) && hasParameter(inputs)) { + return new ModuleDetailsCommand(allModules, inputs[MODULE_CODE_INDEX].trim()); + + } else if (userCommand.equals(SEARCH_COMMAND) && hasParameter(inputs)) { + return new SearchModulesCommand(allModules, inputs[MODULE_CODE_INDEX].trim()); + + } else if (userCommand.equals(TO_CAP_CALCULATOR_COMMAND) && hasNoParameter(inputs)) { + return new Command(true, true, CAP_CALCULATOR); + + } else if (userCommand.equals(EXIT_COMMAND) && hasNoParameter(inputs)) { + return new Command(true); + + } else if (userCommand.equals(ACADEMIC_PLANNER_COMMAND) && hasNoParameter(inputs)) { + throw new CommandParserException(ERROR_IN_ACADPLAN + NEW_LINE + EXITING_CURRENT_COMMAND); + } else { + String errorMessage = determineError(inputs); + throw new CommandParserException(errorMessage + NEW_LINE + EXITING_CURRENT_COMMAND); + } + } + + /** + * Processes user input to remove whitespaces and return a string array. + * + * @param userInput user input + * @return string array + */ + public static String[] processInput(String userInput) { + userInput = userInput.replaceAll("\\s+"," "); + String[] inputs = userInput.toUpperCase().split(" ",2); + return inputs; + } + + /** + * Checks for the type of error and returns corresponding message. + * + * @param inputs user input + * @return error message + */ + private static String determineError(String[] inputs) { + switch (inputs[COMMAND_INDEX]) { + case ADD_COMMAND: + return ("ADD COMMAND:" + ERROR_NO_PARAMETER); + case EDIT_COMMAND: + return ("EDIT COMMAND:" + ERROR_NO_PARAMETER); + case REMOVE_COMMAND: + return ("REMOVE COMMAND:" + ERROR_NO_PARAMETER); + case SEARCH_COMMAND: + return ("SEARCH COMMAND:" + ERROR_NO_PARAMETER); + case DETAILS_COMMAND: + return ("DETAILS COMMAND:" + ERROR_NO_PARAMETER); + case ACADEMIC_PLANNER_COMMAND: + return ("ACADPLAN COMMAND:" + ERROR_HAS_PARAMETER); + case VIEW_COMMAND: + return ("VIEW COMMAND:" + ERROR_HAS_PARAMETER); + case HELP_COMMAND: + return ("HELP COMMAND:" + ERROR_HAS_PARAMETER); + case EXIT_COMMAND: + return ("EXIT COMMAND:" + ERROR_HAS_PARAMETER); + case TO_CAP_CALCULATOR_COMMAND: + return ("CAPCALC COMMAND:" + ERROR_HAS_PARAMETER); + default: + return (ERROR_INVALID_COMMAND); + } + } + + /** + * Returns true if input has parameter attached at the end after command, + * else returns false. + * + * @param inputs user input + * @return true or false + */ + private static boolean hasParameter(String[] inputs) { + return inputs.length == CORRECT_COMMAND_LENGTH; + } + + /** + * Returns true if input only has a command, + * else returns false. + * + * @param inputs user input + * @return boolean + */ + public static boolean hasNoParameter(String[] inputs) { + return inputs.length == 1; + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/AddModuleCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/AddModuleCommand.java new file mode 100644 index 0000000000..8cbaf0f362 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/AddModuleCommand.java @@ -0,0 +1,346 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.apps.academicplanner.commons.AddUtils; +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.Command; +import seedu.duke.global.LoggingTool; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +import java.io.File; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Scanner; +import java.util.logging.FileHandler; +import java.util.logging.Level; +import java.util.logging.Logger; + +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getAllOccurrencesOfModule; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getLatestFailSemester; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getLatestSemesterModule; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.printAllOccurrencesOfModule; + +//@@author jerroldlam +/** + * Class representing an add module command from the academic planner. + */ +public class AddModuleCommand extends Command { + public static final String ERROR_INVALID_INTEGER = "INVALID INTEGER"; + private static final String ERROR_INVALID_SEMESTER_INDEX = "INVALID SEMESTER INDEX"; + private static final String ERROR_INVALID_GRADE = "INVALID GRADE VALUE"; + private static final String ERROR_NOT_OFFERED = " IS NOT OFFERED BY NUS"; + private static final String INVALID_RETAKE_GRADE + = "Entered grade must be a fail grade as selected semester is not the latest semester!"; + private static final String ERROR_DUPLICATE_MOD + = "You already have this mod on your calendar and you cannot retake!"; + private static final String VALID_GRADES = "Valid grades are:\n" + + "\tLetter Grades: A+, A, A-, B+, B, B-, C+, C, D+, D, F\n" + + "\tSpecial Grades: CS, CU, S, U, W, IC, IP, AUD, WU, EXE\n" + + "\tIf you have yet to have a grade for the module: NT"; + private static final String VALID_SEMESTERS = "\tValid semesters are integers from 1 to 10, inclusive"; + private static final String RETAKE_MOD = "This is a module that you are retaking!"; + private static final String WARNING = "Note that you cannot retake this module in any of the previous semester.\n"; + private static final String LOG_FILE_NAME = "logs/AddModuleCommand.log"; + private static final String LOGGER_NAME = "AddModuleCommand"; + private static final String INVALID_RETAKE_SEMESTER + = "Cannot retake this module in any of the semester listed above!"; + private static final String INVALID_RETAKE_SEMESTER_LESS + = "Cannot retake this module before semester "; + + private static Logger logger; + private static FileHandler fh; + private AddUtils addUtils; + private ModuleValidator moduleValidator; + private Person currentPerson; + private Scanner in; + private String moduleCode; + private Storage storage; + + /** + * Default constructor for Add Module command. + * + * @param allModules all modules offered by NUS + * @param currentPerson current user + * @param ui Ui + * @param moduleCode module code + */ + public AddModuleCommand(ModuleLoader allModules, Person currentPerson, Ui ui, String moduleCode, Storage storage) { + this.addUtils = new AddUtils(allModules, currentPerson); + this.moduleValidator = new ModuleValidator(allModules, currentPerson); + this.in = ui.getScanner(); + this.moduleCode = moduleCode; + this.currentPerson = currentPerson; + this.storage = storage; + } + + /** + * Adds a module to the user's academic calendar if it exists in FullModule, + * else does not add module into user's academic calendar. + * Validates user's input semester and grade. + * If either is invalid, does not add module into user's academic calendar. + * Updates user's statistics as well. + */ + @Override + public void execute() throws AcademicException, IOException { + initialiseLogger(); + logger.log(Level.INFO,"Executing add command."); + + boolean isRetake = validateModuleCode(); + + int semesterValue = getSemesterValue(isRetake); + String gradeValue = getGradeValue(isRetake,semesterValue); + int moduleCredit = addUtils.getModuleCreditForModule(moduleCode); + + assertInputs(semesterValue, moduleCredit); + addUtils.addModuleToUser(moduleCode, semesterValue, gradeValue, moduleCredit); + + logger.log(Level.INFO,"Finished executing add command."); + fh.close(); + + storage.saver(currentPerson); + } + + /** + * Prompts and accepts user input for grade value. + * Also checks for grade value validity. + * + * @return Valid Grade value + * @throws AcademicException when invalid grade value is given + */ + private String getGradeValue(boolean isRetake, int semesterValue) throws AcademicException { + promptUserToEnterGrade(); + String gradeValue = in.nextLine().trim().toUpperCase(); + validateInputGrade(gradeValue); + + if (isRetake && !moduleValidator.isRetakeGrade(gradeValue) + && semesterValue < getLatestFailSemester(currentPerson.getModulesList(), moduleCode)) { + throw new AcademicException(INVALID_RETAKE_GRADE); + } + + return gradeValue; + } + + /** + * Prompts and accepts user input for semester value. + * Also checks for semester value validity. + * + * @return valid semester value + * @throws AcademicException when invalid semester value is given + */ + private int getSemesterValue(boolean isRetake) + throws AcademicException { + promptUserToEnterSemester(); + String userInput = in.nextLine().trim(); + int semesterValue = validateInputSemester(userInput, isRetake); + return semesterValue; + } + + /** + * Initialises logger for use. + * + * @throws IOException when logger fails to initialise + */ + private void initialiseLogger() throws IOException { + File file = new File("logs"); + file.mkdirs(); + fh = new FileHandler(LOG_FILE_NAME); + logger = new LoggingTool(LOGGER_NAME, fh).initialize(); + } + + /** + * Validates critical inputs via assertions. + * + * @param semesterValue input semester value + * @param moduleCredit module credit retrieved from NUSMODS API + */ + private void assertInputs(int semesterValue, int moduleCredit) { + assert semesterValue > 0; + assert moduleCredit >= 0; + } + + /** + * Throws AcademicException if the module code is not offered by NUS, + * or module is already taken by user. + * + * @throws AcademicException thrown when invalid module code is requested to be added + */ + private boolean validateModuleCode() throws AcademicException { + boolean isRetake = false; + if (!moduleValidator.isModOfferedByNus(moduleCode)) { + logger.log(Level.WARNING,"Module entered not offered by NUS."); + fh.close(); + throw new AcademicException(moduleCode + ERROR_NOT_OFFERED); + } + + if (moduleValidator.isModTakenByUser(moduleCode)) { + PartialModule module = getPartialModule(); + + if (moduleValidator.isRetakeGrade(module.getGrade())) { + isRetake = true; + printRetakeHelp(); + } else { + logger.log(Level.WARNING, "Module entered is duplicated."); + fh.close(); + throw new AcademicException(ERROR_DUPLICATE_MOD); + } + } + return isRetake; + } + + /** + * Prints help information for retaking modules. + */ + private void printRetakeHelp() { + ArrayList allOccurrencesOfModule = getAllOccurrencesOfModule(currentPerson, moduleCode); + System.out.println(RETAKE_MOD); + printAllOccurrencesOfModule(allOccurrencesOfModule); + System.out.println(WARNING); + } + + /** + * Returns partial module object of module code. + * + * @return PartialModule + */ + private PartialModule getPartialModule() { + HashMap> modulesAddedMap = currentPerson.getModulesAddedMap(); + ArrayList modulesAddedList = currentPerson.getModulesList(); + ArrayList moduleIndexList = modulesAddedMap.get(moduleCode); + + int highestCapIndex = moduleIndexList.get(0); + double highestCap = modulesAddedList.get(highestCapIndex).getCap(); + + highestCapIndex = getHighestCapModuleIndex(modulesAddedList, moduleIndexList, highestCapIndex, highestCap); + + PartialModule module = modulesAddedList.get(highestCapIndex); + return module; + } + + /** + * Returns the index of the highest scoring grade of the module. + * + * @param modulesAddedList List of PartialModule + * @param moduleIndexList List of index of module + * @param highestCapIndex Index of the current highest grade + * @param highestCap highest grade value + * @return index of the highest cap + */ + private int getHighestCapModuleIndex(ArrayList modulesAddedList, ArrayList moduleIndexList, + int highestCapIndex, double highestCap) { + for (int index = 0; index < moduleIndexList.size(); index++) { + double currentCap = modulesAddedList.get(moduleIndexList.get(index)).getCap(); + if (currentCap > highestCap) { + highestCapIndex = moduleIndexList.get(index); + highestCap = currentCap; + } + } + return highestCapIndex; + } + + /** + * Validates user inputs and returns semester value if inputs are valid, + * else throws Academic Exception. + * + * @param userInput semester value + * @return semesterIndex + * @throws AcademicException thrown when any input is invalid + */ + private int validateInputSemester(String userInput, boolean isRetake) + throws AcademicException { + int semesterValue; + try { + semesterValue = Integer.parseInt(userInput); + } catch (Exception e) { + logger.log(Level.WARNING,"Semester entered is not an integer."); + fh.close(); + throw new AcademicException(ERROR_INVALID_INTEGER); + } + + if (!ModuleValidator.isValidSemester(semesterValue)) { + logger.log(Level.WARNING,"Semester entered is invalid."); + fh.close(); + throw new AcademicException(ERROR_INVALID_SEMESTER_INDEX); + } + + if (isRetake) { + validateRetakeParameters(semesterValue); + } + return semesterValue; + } + + /** + * Validates the user inputs as per retake requirements. + * + * @param semesterValue semester of the retake module + * @throws AcademicException when invalid inputs are given + */ + private void validateRetakeParameters(int semesterValue) throws AcademicException { + ArrayList modulesAddedList = currentPerson.getModulesList(); + ArrayList indexArrayList = currentPerson.getModulesAddedMap().get(moduleCode); + + PartialModule latestSemesterModule = getLatestSemesterModule(modulesAddedList, indexArrayList); + + boolean isLatestRetake = moduleValidator.isRetakeGrade(latestSemesterModule.getGrade()); + + if (!isLatestRetake && semesterValue <= latestSemesterModule.getSemesterIndex()) { + fh.close(); + throw new AcademicException(INVALID_RETAKE_SEMESTER_LESS + latestSemesterModule.getSemesterIndex() + "!"); + } + checkValidityRetakeSemester(semesterValue, modulesAddedList); + } + + /** + * Checks the validity of the retake semester adn throws AcademicException if invalid. + * + * @param semesterValue semeterIndex + * @param modulesAddedList list of added modules + * @throws AcademicException when invalid semester to retake is chosen + */ + private void checkValidityRetakeSemester(int semesterValue, ArrayList modulesAddedList) + throws AcademicException { + for (int index = 0; index < modulesAddedList.size(); index++) { + int currentSemester = modulesAddedList.get(index).getSemesterIndex(); + String currentModule = modulesAddedList.get(index).getModuleCode(); + + if (currentSemester == semesterValue && currentModule.contains(moduleCode)) { + fh.close(); + throw new AcademicException(INVALID_RETAKE_SEMESTER); + } + } + } + + /** + * Prints prompt and help messages for user to enter module's grade. + */ + private void promptUserToEnterGrade() { + System.out.println("Grade received for " + moduleCode.toUpperCase() + "?"); + System.out.println(VALID_GRADES); + } + + /** + * Prints prompt and help messages for user to enter module's semester taken. + */ + private void promptUserToEnterSemester() { + System.out.println("Semester you plan to take " + moduleCode.toUpperCase() + "?"); + System.out.println(VALID_SEMESTERS); + } + + /** + * Throws exception if invalid grade is entered. + * + * @param gradeValue user input grade + * @throws AcademicException thrown when invalid grade is entered + */ + private void validateInputGrade(String gradeValue) throws AcademicException { + if (!moduleValidator.isValidGrade(gradeValue)) { + logger.log(Level.WARNING,"Grade entered is invalid."); + fh.close(); + throw new AcademicException(ERROR_INVALID_GRADE); + } + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/EditModuleCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/EditModuleCommand.java new file mode 100644 index 0000000000..6e5c5704fc --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/EditModuleCommand.java @@ -0,0 +1,70 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.apps.academicplanner.commons.EditUtils; +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; +import java.util.Scanner; + +//@@author harryleecp +/** + * Class representing an edit module command from the academic planner. + */ +public class EditModuleCommand extends Command { + private static final String EDIT_SEMESTER = "1"; + private static final String EDIT_GRADE = "2"; + private static final String ERROR_INVALID_MODULE = "The module you entered is invalid"; + private static final String ERROR_NOT_ADDED = "You have not added this module into your list yet"; + private static final String ERROR_EDIT_OPTION = "Number entered does not correspond to any feature"; + public static final String PROMPT_EDIT_CHOICES = "Enter the number corresponding to the feature you wish to edit:\n" + + "\t1) Semester\n" + + "\t2) Grade"; + + private EditUtils editUtils; + private ModuleValidator moduleValidator; + private Person currentPerson; + private Ui ui; + private Scanner in; + private String moduleCode; + private Storage storage; + + public EditModuleCommand(ModuleLoader allModules, Person currentPerson, Ui ui, String moduleCode, Storage storage) { + this.editUtils = new EditUtils(allModules, currentPerson); + this.moduleValidator = new ModuleValidator(allModules, currentPerson); + this.ui = ui; + this.in = ui.getScanner(); + this.moduleCode = moduleCode; + this.currentPerson = currentPerson; + this.storage = storage; + } + + /** + * Allows user to edit the module entry of his academic calendar. + * Parameters allowed to change are semesterIndex or Grade. + */ + @Override + public void execute() throws AcademicException { + if (!moduleValidator.isModOfferedByNus(moduleCode)) { + throw new AcademicException(ERROR_INVALID_MODULE); + } else if (moduleValidator.isModTakenByUser(moduleCode)) { + System.out.println(PROMPT_EDIT_CHOICES); + String choice = in.nextLine().trim(); + + if (choice.equals(EDIT_SEMESTER)) { + editUtils.editModuleSemester(in, moduleCode); + storage.saver(currentPerson); + } else if (choice.equals(EDIT_GRADE)) { + editUtils.editModuleGrade(in, moduleCode); + storage.saver(currentPerson); + } else { + throw new AcademicException(ERROR_EDIT_OPTION); + } + } else { + throw new AcademicException(ERROR_NOT_ADDED); + } + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/ModuleDetailsCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/ModuleDetailsCommand.java new file mode 100644 index 0000000000..96020f8b9f --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/ModuleDetailsCommand.java @@ -0,0 +1,41 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.academicplanner.commons.PrintUtils; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.Command; +import seedu.duke.global.objects.FullModule; + +//@@author vanessa-kang +public class ModuleDetailsCommand extends Command { + + private static final String ERROR_NOT_OFFERED = " IS NOT OFFERED BY NUS"; + + private final ModuleLoader allModules; + private String moduleCode; + private ModuleValidator moduleValidator; + private PrintUtils printUtils = new PrintUtils(); + FullModule module; + + public ModuleDetailsCommand(ModuleLoader allModules, String moduleCode) { + this.allModules = allModules; + this.moduleCode = moduleCode; + this.moduleValidator = new ModuleValidator(allModules); + } + + @Override + public void execute() throws AcademicException { + validateModuleCode(); + int mapIndex = allModules.getModuleMap().get(moduleCode); + module = allModules.getModuleFullDetails()[mapIndex]; + printUtils.printModuleDetails(module); + } + + private void validateModuleCode() throws AcademicException { + if (!moduleValidator.isModOfferedByNus(moduleCode)) { + throw new AcademicException(moduleCode + ERROR_NOT_OFFERED); + } + } + +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/PrintCalenderCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/PrintCalenderCommand.java new file mode 100644 index 0000000000..a5d5e6e206 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/PrintCalenderCommand.java @@ -0,0 +1,91 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.apps.academicplanner.commons.AcademicCalendarSorter; +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.academicplanner.commons.PrintUtils; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.global.Command; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import java.util.ArrayList; +import java.util.Comparator; +import java.util.Scanner; + +//@@author vanessa-kang +/** + * Class representing a print module command from the academic planner. + */ +public class PrintCalenderCommand extends Command { + private static final String FULL_PRINT_COMMAND = "Full"; + private static final String EMPTY_MODULE_LIST = "Your academic calendar is currently empty!"; + private static final String ERROR_INVALID_COMMAND = "Invalid command entered"; + private static final String ERROR_INVALID_SEMESTER = "Invalid semester entered."; + private static final String PROMPT_USER = "Printing command received.\n" + + "\tTo print the whole Academic Calendar, type \n" + + "\tTo print the desired semester only, type a number from 1 to 10, inclusive."; + + private PrintUtils printUtils = new PrintUtils(); + private final ArrayList modulesList; + private Scanner in; + private AcademicCalendarSorter sorter; + + /** + * Default constructor for print calendar command. + * @param currentPerson current user + * @param in PlanNUS ui + */ + public PrintCalenderCommand(Person currentPerson, Scanner in) { + this.modulesList = currentPerson.getModulesList(); + sorter = new AcademicCalendarSorter(modulesList); + this.in = in; + } + + /** + * Execution of print command where user will be prompted of choice for full calendar or semester. + */ + @Override + public void execute() throws AcademicException { + if (modulesList.size() > 0) { + + System.out.println(PROMPT_USER); + String userInput = in.nextLine().trim(); + + if (userInput.equalsIgnoreCase(FULL_PRINT_COMMAND)) { + printFullCalendar(); + } else { + try { + int selectedSemester = Integer.parseInt(userInput); + if (ModuleValidator.isValidSemester(selectedSemester)) { + sortAndPrint(selectedSemester); + } else { + throw new AcademicException(ERROR_INVALID_SEMESTER); + } + } catch (NumberFormatException e) { + throw new AcademicException(ERROR_INVALID_COMMAND); + } + } + } else { + System.out.println(EMPTY_MODULE_LIST); + } + } + + //@@author jerroldlam + /** + * Prints full academic calendar. + */ + private void printFullCalendar() { + ArrayList sortedBySem = new ArrayList<>(modulesList); + sortedBySem.sort(Comparator.comparing(PartialModule::getSemesterIndex)); + printUtils.printFullCalendar(sortedBySem); + } + + /** + * Sorts and prints the semester's module. + * + * @param selectedSemester semester to print + */ + private void sortAndPrint(int selectedSemester) { + ArrayList sortedList = sorter.sortBySemester(selectedSemester); + printUtils.printBySemester(sortedList, selectedSemester); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/PrintHelpCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/PrintHelpCommand.java new file mode 100644 index 0000000000..62e0f5c2ac --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/PrintHelpCommand.java @@ -0,0 +1,33 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.global.Command; + +//@@author jerroldlam +/** + * Class representing a print help command from the academic planner. + */ +public class PrintHelpCommand extends Command { + + private static final String COMMANDS_LIST = "____________________________________________________________\n" + + "Available commands are:\n" + + "\tadd \n" + + "\tedit \n" + + "\tremove \n" + + "\tdetails \n" + + "\tsearch \n" + + "\tcapcalc\n" + + "\tview\n" + + "\thelp\n" + + "\texit"; + + public PrintHelpCommand() { + //Constructor is intentionally left blank + } + + /** + * Prints commands list for academic planner. + */ + public void execute() { + System.out.println(COMMANDS_LIST); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/RemoveModuleCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/RemoveModuleCommand.java new file mode 100644 index 0000000000..1ec46ac049 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/RemoveModuleCommand.java @@ -0,0 +1,54 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.academicplanner.commons.RemoveUtils; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +//@@author harryleecp +/** + * Class representing an remove module command from the academic planner. + */ +public class RemoveModuleCommand extends Command { + private static final String ERROR_INVALID_MODULE = "The module you entered is not offered by NUS"; + private static final String ERROR_NOT_ADDED = "You have not added this module into your list yet"; + private static final String MODULE_REMOVED = "Module removed successfully."; + + private RemoveUtils removeUtils; + private ModuleValidator moduleValidator; + private Person currentPerson; + private String moduleCode; + private Storage storage; + private Ui ui; + + public RemoveModuleCommand(ModuleLoader allModules, Person currentPerson, + Ui ui, String moduleCode, Storage storage) { + this.removeUtils = new RemoveUtils(ui, currentPerson); + this.moduleValidator = new ModuleValidator(allModules, currentPerson); + this.moduleCode = moduleCode; + this.currentPerson = currentPerson; + this.storage = storage; + this.ui = ui; + } + + /** + * Removes moduleCode from user's academic calendar if it exists, + * else prompts user of error. + */ + @Override + public void execute() throws AcademicException { + if (!moduleValidator.isModOfferedByNus(moduleCode)) { + throw new AcademicException(ERROR_INVALID_MODULE); + } else if (moduleValidator.isModTakenByUser(moduleCode)) { + removeUtils.removeModuleFromUserModuleList(moduleCode); + System.out.println(MODULE_REMOVED); + storage.saver(currentPerson); + } else { + throw new AcademicException(ERROR_NOT_ADDED); + } + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commands/SearchModulesCommand.java b/src/main/java/seedu/duke/apps/academicplanner/commands/SearchModulesCommand.java new file mode 100644 index 0000000000..1facb31312 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commands/SearchModulesCommand.java @@ -0,0 +1,37 @@ +package seedu.duke.apps.academicplanner.commands; + +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.academicplanner.commons.PrintUtils; +import seedu.duke.global.Command; +import seedu.duke.global.objects.FullModule; +import java.util.ArrayList; + +//@@author vanessa-kang +public class SearchModulesCommand extends Command { + private final ModuleLoader allModules; + private String keyword; + final ArrayList matchList = new ArrayList<>(); + private final int maxResults = 10; + private PrintUtils printUtils = new PrintUtils(); + + public SearchModulesCommand(ModuleLoader allModules, String keyword) { + this.allModules = allModules; + this.keyword = keyword; + } + + @Override + public void execute() { + + FullModule[] modules = allModules.getModuleFullDetails(); + + for (FullModule item: modules) { + if (item.getModuleCode().contains(keyword)) { + matchList.add(item.getModuleCode()); + } + if (matchList.size() == maxResults) { + break; + } + } + printUtils.printMatchModules(matchList, maxResults); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/AcademicCalendarSorter.java b/src/main/java/seedu/duke/apps/academicplanner/commons/AcademicCalendarSorter.java new file mode 100644 index 0000000000..0ebc1d6746 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/AcademicCalendarSorter.java @@ -0,0 +1,48 @@ +package seedu.duke.apps.academicplanner.commons; + +import seedu.duke.global.objects.PartialModule; +import java.util.ArrayList; + +//@@author jerroldlam +/** + * Class representing sorter for academic calendar. + */ +public class AcademicCalendarSorter { + private static final String ERROR_EMPTY_CALENDAR = "Your academic calendar is empty."; + private ArrayList userModuleList; + + public AcademicCalendarSorter(ArrayList moduleList) { + userModuleList = moduleList; + } + + /** + * Sorts module list by semester index and return module list of chosen semester. + * + * @param semesterIndex semesterIndex to search for + * @return module list of the chosen semester + */ + public ArrayList sortBySemester(int semesterIndex) { + + if (userModuleList.size() < 1) { + System.out.println(ERROR_EMPTY_CALENDAR); + } + ArrayList sortedList = processCalendar(semesterIndex); + return sortedList; + } + + /** + * Collects modules which are from a given semester into an arraylist and returns it. + * + * @param semesterIndex semester to sort by + * @return sortedList + */ + public ArrayList processCalendar(int semesterIndex) { + ArrayList sortedList = new ArrayList<>(); + for (PartialModule m : userModuleList) { + if (m.getSemesterIndex() == semesterIndex) { + sortedList.add(m); + } + } + return sortedList; + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/AddUtils.java b/src/main/java/seedu/duke/apps/academicplanner/commons/AddUtils.java new file mode 100644 index 0000000000..bd6d1bd913 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/AddUtils.java @@ -0,0 +1,88 @@ +package seedu.duke.apps.academicplanner.commons; + +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.capcalculator.commons.CalculatorUtils; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import java.util.ArrayList; +import java.util.HashMap; + +//@@author jerroldlam +/** + * Class representing add module utilities from the add module command. + */ +public class AddUtils { + private static final int FROM_ADD = 1; + private static final int EMPTY = 0; + + private final ModuleLoader allModules; + private final ArrayList modulesList; + private final HashMap> modulesAddedMap; + private final CalculatorUtils calculatorUtils; + + /** + * Default constructor for AddUtils. + * + * @param allModules all modules offered by NUS + * @param currentPerson current User + */ + public AddUtils(ModuleLoader allModules, Person currentPerson) { + this.allModules = allModules; + this.modulesList = currentPerson.getModulesList(); + this.modulesAddedMap = currentPerson.getModulesAddedMap(); + this.calculatorUtils = new CalculatorUtils(currentPerson); + } + + /** + * Creates a new instance of a module of the parameters and adds it into the + * hashmap and array list of user modules. + * + * @param moduleCode module to be added + * @param semesterValue semester that module is taken in + * @param gradeValue grade achieved for module + * @param moduleCredit module's credit weightage + */ + public void addModuleToUser(String moduleCode, int semesterValue, + String gradeValue, int moduleCredit, int... from) { + PartialModule newModuleToAdd = new PartialModule(moduleCode, semesterValue, gradeValue, moduleCredit); + populate(moduleCode, newModuleToAdd); + calculatorUtils.updateCap(FROM_ADD, newModuleToAdd); + if (from.length == 0) { + System.out.println(newModuleToAdd.getModuleCode() + + " added into Semester " + semesterValue + "."); + } + } + + /** + * Populates the user's arraylist and hashmap with the new module. + * + * @param moduleCode module code to be entered + * @param newModuleToAdd module object to be added + */ + private void populate(String moduleCode, PartialModule newModuleToAdd) { + modulesList.add(newModuleToAdd); + ArrayList addedModuleIndex = modulesAddedMap.get(moduleCode); + + if (addedModuleIndex == null || addedModuleIndex.size() == EMPTY) { + ArrayList integerArrayToAdd = new ArrayList<>(); + integerArrayToAdd.add(modulesList.size() - 1); + modulesAddedMap.put(moduleCode, integerArrayToAdd); + } else { + addedModuleIndex.add(modulesList.size() - 1); + modulesAddedMap.put(moduleCode, addedModuleIndex); + } + } + + /** + * Function to return module credits for module code. + * + * @param moduleCode string of module code + * @return int of module credit + */ + public int getModuleCreditForModule(String moduleCode) { + int mapIndex = allModules.getModuleMap().get(moduleCode); + int moduleCredit = allModules.getModuleFullDetails()[mapIndex].getModuleCredit(); + assert moduleCredit >= 0; + return moduleCredit; + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/EditUtils.java b/src/main/java/seedu/duke/apps/academicplanner/commons/EditUtils.java new file mode 100644 index 0000000000..d1540f1203 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/EditUtils.java @@ -0,0 +1,188 @@ +package seedu.duke.apps.academicplanner.commons; + +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.capcalculator.commons.CalculatorUtils; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Scanner; + +import static java.lang.Integer.parseInt; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.fromFailingToPass; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getEntryToBeEdited; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getLatestSemester; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.notAllowedSemesterUpdateBackward; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.notAllowedSemesterUpdateForward; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.verifyRepeatedSemester; + + +//@@author harryleecp +/** + * Class representing edit module utilities from the edit module command. + */ +public class EditUtils { + + private final ArrayList modulesList; + private final HashMap> modulesAddedMap; + private final ModuleValidator modChecker; + private final CalculatorUtils calculatorUtils; + private final Person currentPerson; + + /** + * Default constructor for EditUtils. + * + * @param allModules all modules offered by NUS + * @param currentPerson current User + */ + public EditUtils(ModuleLoader allModules, Person currentPerson) { + this.modulesList = currentPerson.getModulesList(); + this.modulesAddedMap = currentPerson.getModulesAddedMap(); + this.modChecker = new ModuleValidator(allModules, currentPerson); + this.calculatorUtils = new CalculatorUtils(currentPerson); + this.currentPerson = currentPerson; + } + + private static final int FROM_EDIT = 2; + private static final String PROMPT_NEW_SEMESTER_VALUE = "Enter the new semester value: "; + private static final String PROMPT_NEW_GRADE = "Enter the new grade: "; + private static final String ERROR_INVALID_SEMESTER_INDEX = "INVALID SEMESTER INDEX"; + private static final String ERROR_INVALID_GRADE = "INVALID GRADE VALUE"; + private static final String ERROR_SEMESTER_NOT_A_NUMBER = "Semester entered must be a number!"; + private static final String ERROR_ILLEGAL_FORWARD + = "This module cannot be shifted to a later semester as " + + "you are not allowed to retake a module that you have passed!"; + private static final String ERROR_ILLEGAL_BACKWARD + = "This module cannot be shifted to an earlier semester as " + + "you are not allowed to retake a module that you have passed!"; + private static final String ERROR_NOT_LATEST_FAILED_MODULE + = "Sorry! You are only allowed to update the latest failed module!"; + private static final String VALID_GRADES = "Valid grades are:\n" + + "\tLetter Grades: A+, A, A-, B+, B, B-, C+, C, D+, D, F\n" + + "\tSpecial Grades: CS, CU, S, U, W, IC, IP, AUD, WU, EXE\n" + + "\tIf you have yet to have a grade for the module: NT"; + private static final String VALID_SEMESTERS = "Valid semesters are integers from 1 to 1" + "0, inclusive"; + + /** + * Changes the current grade of module to the input of the user. + * PartialModule must exist in user's list and hashmap + * + * @param in scanner + * @param moduleCode code of module to edit the grade + * @throws AcademicException invalid grade + */ + public void editModuleGrade(Scanner in, String moduleCode) throws AcademicException { + final int indexToUpdate = getEntryToBeEdited(in, moduleCode, currentPerson, FROM_EDIT); + + System.out.println(PROMPT_NEW_GRADE); + System.out.println(VALID_GRADES); + String gradeValue = in.nextLine().trim().toUpperCase(); + + if (!modChecker.isValidGrade(gradeValue)) { + throw new AcademicException(ERROR_INVALID_GRADE); + } + + ArrayList moduleIndexList = modulesAddedMap.get(moduleCode); + updateModuleGrade(gradeValue, moduleIndexList.get(indexToUpdate), moduleIndexList); + System.out.println("Grade for " + moduleCode + " successfully updated!"); + } + + /** + * Updates user's module with new grade and updates user's Cap. + * + * @param indexToUpdate Index of Module List that needs to be updated + * @param gradeValue grade to edit to + * @param moduleIndexList Array list containing all occurrences of module code + */ + public void updateModuleGrade(String gradeValue, int indexToUpdate, ArrayList moduleIndexList) + throws AcademicException { + PartialModule module = modulesList.get(indexToUpdate); + + if (fromFailingToPass(module.getGrade(), gradeValue)) { + int latestSemester = getLatestSemester(modulesList, moduleIndexList); + + if (module.getSemesterIndex() == latestSemester) { + updateCurrentModuleGrade(gradeValue, module); + } else { + throw new AcademicException(ERROR_NOT_LATEST_FAILED_MODULE); + } + } else { + updateCurrentModuleGrade(gradeValue, module); + } + } + + /** + * Updates module to reflect the new grade. + * + * @param gradeValue new grade value to reflect + * @param module module to edit + */ + private void updateCurrentModuleGrade(String gradeValue, PartialModule module) { + double oldCap = module.getCap(); + module.setGrade(gradeValue); + double newCap = module.getCap(); + calculatorUtils.updateCap(FROM_EDIT, module, oldCap, newCap); + } + + /** + * Edits module semester taken when module is in user's list. + * PartialModule must exist in user's module list and hashmap. + * + * @param in scanner + * @param moduleCode module to edit + * @throws AcademicException invalid semester index + */ + public void editModuleSemester(Scanner in, String moduleCode) throws AcademicException { + final int indexToUpdate = getEntryToBeEdited(in, moduleCode, currentPerson, FROM_EDIT); + + System.out.println(PROMPT_NEW_SEMESTER_VALUE); + System.out.println(VALID_SEMESTERS); + String newValue = in.nextLine().trim(); + + Integer newSemester; + try { + newSemester = parseInt(newValue); + } catch (Exception e) { + throw new AcademicException(ERROR_SEMESTER_NOT_A_NUMBER); + } + + if (!ModuleValidator.isValidSemester(newSemester)) { + throw new AcademicException(ERROR_INVALID_SEMESTER_INDEX); + } + + verifyRepeatedSemester(newSemester, currentPerson, moduleCode, modulesList); + ArrayList moduleIndexList = modulesAddedMap.get(moduleCode); + PartialModule currentSemesterModule = modulesList.get(moduleIndexList.get(indexToUpdate)); + + if (newSemester > currentSemesterModule.getSemesterIndex() && moduleIndexList.size() > 1) { + if (notAllowedSemesterUpdateForward(newSemester, modulesList, moduleCode) + && modChecker.isRetakeGrade(currentSemesterModule.getGrade())) { + throw new AcademicException(ERROR_ILLEGAL_FORWARD); + } + } else if (moduleIndexList.size() > 1) { + if (notAllowedSemesterUpdateBackward(newSemester, modulesList, moduleCode) + && !modChecker.isRetakeGrade(currentSemesterModule.getGrade())) { + throw new AcademicException(ERROR_ILLEGAL_BACKWARD); + } + } + + updateModuleSemester(newValue, moduleIndexList.get(indexToUpdate)); + System.out.println("Semester for " + moduleCode + " successfully updated!"); + } + + /** + * Finds the module and updates the semester taken. + * + * @param newValue new semester index + * @param indexToEdit Index of Module List that needs to be updated + */ + public void updateModuleSemester(String newValue, int indexToEdit) { + PartialModule item = modulesList.get(indexToEdit); + item.setSemesterIndex(parseInt(newValue)); + assert item.getSemesterIndex() == parseInt(newValue); + } + + +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/ModuleValidator.java b/src/main/java/seedu/duke/apps/academicplanner/commons/ModuleValidator.java new file mode 100644 index 0000000000..186b23fdfa --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/ModuleValidator.java @@ -0,0 +1,187 @@ +package seedu.duke.apps.academicplanner.commons; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Map; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.objects.FullModule; +import seedu.duke.global.objects.Person; + +//@@author jerroldlam +/** + * Class of a module validation object. + */ +public class ModuleValidator { + private static final int STARTING_SEMESTER_INDEX = 1; + private static final int FINAL_SEMESTER_INDEX = 10; + + private final ModuleLoader allModules; + private final HashMap> modulesAddedMap; + + /** + * Default constructor for ModuleValidator. + * + * @param allModules all modules offered by NUS + * @param currentPerson current User + */ + public ModuleValidator(ModuleLoader allModules, Person currentPerson) { + this.allModules = allModules; + this.modulesAddedMap = currentPerson.getModulesAddedMap(); + } + + /** + * Overload constructor for EditUtils. + * + * @param allModules all modules offered by NUS + */ + public ModuleValidator(ModuleLoader allModules) { + this.allModules = allModules; + this.modulesAddedMap = null; + } + + /** + * Overload constructor for SharedUtils. + * + */ + public ModuleValidator() { + this.allModules = null; + this.modulesAddedMap = null; + } + + /** + * Returns true if module code is offered by NUS, + * else returns false. + * @param moduleCode input module code + * @return boolean of module code in FullModule + */ + public boolean isModOfferedByNus(String moduleCode) { + boolean isOffered = allModules.getModuleMap().get(moduleCode) != null; + return (isOffered); + } + + /** + * Returns true if module is in the user's academic calendar, + * else returns false. + * + * @param moduleCode moduleCode to check + * @return boolean + */ + public boolean isModTakenByUser(String moduleCode) { + return (modulesAddedMap.containsKey(moduleCode)); + } + + /** + * Returns true if semsesterIndex is a valid semesterIndex, + * else returns false. + * + * @param semesterIndex semesterIndex to check + * @return false + */ + public static boolean isValidSemester(int semesterIndex) { + return (semesterIndex >= STARTING_SEMESTER_INDEX && semesterIndex <= FINAL_SEMESTER_INDEX); + } + + /** + * Gets the module credit for a certain module code from actual database. + * + * @param moduleCode Module code to be retrieved + * + * @return Module credit + */ + public Integer getModuleCreditFromDatabase(String moduleCode) { + Map moduleMapReference = allModules.getModuleMap(); + FullModule[] moduleArray = allModules.getModuleFullDetails(); + + Integer moduleCodeIndex = moduleMapReference.get(moduleCode); + return moduleArray[moduleCodeIndex].getModuleCredit(); + } + + /** + * Returns true if grade is a Grade option offered by NUS, + * else returns false. + * + * @param grade grade to check + * @return boolean + */ + public boolean isValidGrade(String grade) { + switch (grade.toUpperCase()) { + case "A+": + //Fallthrough + case "A": + //Fallthrough + case "A-": + //Fallthrough + case "B+": + //Fallthrough + case "B": + //Fallthrough + case "B-": + //Fallthrough + case "C+": + //Fallthrough + case "C": + //Fallthrough + case "D+": + //Fallthrough + case "D": + //Fallthrough + case "F": + //Fallthrough + case "CS": //Completed Satisfactorily + //Fallthrough + case "CU": //Completed Unsatisfactorily + //Fallthrough + case "S": //Satisfactory + //Fallthrough + case "U": //Unsatisfactory + //Fallthrough + case "W": //Withdrawn + //Fallthrough + case "IC": //Incomplete + //Fallthrough + case "IP": //In progress + //Fallthrough + case "AUD": //Audit + //Fallthrough + case "WU": //Withdrawn from University + //Fallthrough + case "EXE" : //Exempted + //Fallthrough + case "NT": //Not taken + return true; + default: + return false; + } + } + + /** + * Returns true if grade is a valid retakeable grade, + * else returns false. + * + * @param grade grade to check + * @return boolean + */ + public boolean isRetakeGrade(String grade) { + switch (grade.toUpperCase()) { + case "F": + //Fallthrough + case "CU" : + //Fallthrough + case "U": + //Fallthrough + case "W": + //Fallthrough + case "AUD": + //Fallthrough + case "WU": + //Fallthrough + case "EXE": + //Fallthrough + case "IC": + //Fallthrough + return true; + default: + return false; + } + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/PrintUtils.java b/src/main/java/seedu/duke/apps/academicplanner/commons/PrintUtils.java new file mode 100644 index 0000000000..cd5d8ac2c4 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/PrintUtils.java @@ -0,0 +1,120 @@ +package seedu.duke.apps.academicplanner.commons; + +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.FullModule; +import java.util.ArrayList; + +//@@author jerroldlam +/** + * Class representing the common print methods. + */ +public class PrintUtils { + private static final String INDENT = " "; + private static final String ERROR_NO_MODULES = "You have no modules added in the semester you requested!"; + + public PrintUtils() { + //Constructor is intentionally left blank + } + + /** + * Prints out the sorted list of modules. + * + * @param sortedList list to be printed + * @param selectedSemester semester chosen. + */ + public void printBySemester(ArrayList sortedList, int selectedSemester) { + if (sortedList.size() < 1) { + System.out.println(ERROR_NO_MODULES); + return; + } + + System.out.println(INDENT + "SEMESTER " + selectedSemester); + for (PartialModule item : sortedList) { + printCalendarLine(item); + } + } + + //@@author vanessa-kang + /** + * Prints a single entry of item. + * + * @param item module details to be printed + */ + private void printCalendarLine(PartialModule item) { + int spacing = 8 + (8 - item.getModuleCode().length()); + System.out.println(item.getModuleCode() + + printSpace(spacing) + + item.getGrade()); + } + + /** + * Prints out contents of the Array list of partial modules in an intuitive format. + * + * @param sortedBySem arraylist of modules + */ + public void printFullCalendar(ArrayList sortedBySem) { + int newSem; + int currentSem = 0; + for (PartialModule item : sortedBySem) { + newSem = item.getSemesterIndex(); + if (newSem != currentSem) { + currentSem = newSem; + System.out.println(INDENT + "SEMESTER " + currentSem); + } + printCalendarLine(item); + } + } + + /** + * Prints out detailed information about a module. + * + * @param module FullModule object, contains all information about a module. + */ + public void printModuleDetails(FullModule module) { + + String semOfferedStr = module.getSemester().toString(); + + System.out.println(module.getModuleCode() + " " + module.getTitle()); + System.out.println("\t" + "Department: " + module.getDepartment()); + System.out.println("\t" + "Faculty: " + module.getFaculty()); + System.out.println("\t" + "Credits: " + module.getModuleCredit() + "MCs"); + System.out.println("\t" + "Semesters offered: " + semOfferedStr.substring(1,semOfferedStr.length() - 1)); + System.out.println("\t" + "Prerequisites: " + + module.getPrerequisite().replaceAll("\n","\n\t" + printSpace(15))); + System.out.println("\t" + "Corequisites: " + + module.getCorequisite().replaceAll("\n","\n\t" + printSpace(13))); + System.out.println("\t" + "Preclusions: " + + module.getPreclusion().replaceAll("\n","\n\t" + printSpace(13))); + } + + /** + * Prints out list of module codes that matches the user's search key. + * + * @param matchList arrayList of module codes that matches the search key. + * @param maxResults maximum number of results to be printed. + */ + + public void printMatchModules(ArrayList matchList, int maxResults) { + + String grammar = matchList.size() == 1 ? "module." : "modules."; + + System.out.println("Note: Only up to the first " + maxResults + " results are displayed."); + System.out.println("Found " + matchList.size() + " matching " + grammar); + for (String matches: matchList) { + System.out.println(matches); + } + } + + /** + * Prints num spaces for indentation. + * @param num int of spaces to print + * @return string of spaces + */ + private String printSpace(int num) { + String space = ""; + for (int i = 0; i < num; i++) { + space += " "; + } + return space; + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/RemoveUtils.java b/src/main/java/seedu/duke/apps/academicplanner/commons/RemoveUtils.java new file mode 100644 index 0000000000..c2c39bdb28 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/RemoveUtils.java @@ -0,0 +1,69 @@ +package seedu.duke.apps.academicplanner.commons; + +import java.util.ArrayList; +import java.util.Map; +import java.util.Scanner; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getEntryToBeEdited; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.updateHashmap; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.capcalculator.commons.CalculatorUtils; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +//@@author harryleecp +/** + * Class representing remove module utilities from the remove module command. + */ +public class RemoveUtils { + private static final int FROM_REMOVE = 3; + + private final Map> modulesAddedMap; + private final ArrayList modulesList; + private final CalculatorUtils calculatorUtils; + private final Person currentPerson; + private final Ui ui; + + /** + * Default constructor for RemoveUtils. + * + * @param currentPerson current user + */ + public RemoveUtils(Ui ui, Person currentPerson) { + this.modulesList = currentPerson.getModulesList(); + this.calculatorUtils = new CalculatorUtils(currentPerson); + this.modulesAddedMap = currentPerson.getModulesAddedMap(); + this.currentPerson = currentPerson; + this.ui = ui; + } + + /** + * Removes module from user's module list. + * PartialModule must exist in user's module list. + * + * @param moduleCode module to remove. + */ + public void removeModuleFromUserModuleList(String moduleCode) throws AcademicException { + Scanner in = ui.getScanner(); + final int totalNumberOfModules = modulesList.size(); + + int indexToRemove = getEntryToBeEdited(in, moduleCode, currentPerson, FROM_REMOVE); + ArrayList moduleIndexList = modulesAddedMap.get(moduleCode); + + PartialModule module = modulesList.get(moduleIndexList.get(indexToRemove)); + calculatorUtils.updateCap(FROM_REMOVE, module); + + depopulate(module); + assert modulesList.size() == totalNumberOfModules - 1; + } + + /** + * Removes module from both arraylist and hashmap of the user. + * + * @param module module object to remove + */ + private void depopulate(PartialModule module) { + modulesList.remove(module); + updateHashmap(modulesList, currentPerson); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/commons/SharedUtils.java b/src/main/java/seedu/duke/apps/academicplanner/commons/SharedUtils.java new file mode 100644 index 0000000000..ccaea65cf6 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/commons/SharedUtils.java @@ -0,0 +1,348 @@ +package seedu.duke.apps.academicplanner.commons; + +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Scanner; + +import static java.lang.Integer.parseInt; + +//@@author Khenus + +/** + * A class that handles verification for the addition, edition and removal of duplicated entries. + */ +public class SharedUtils { + private static final int FROM_EDIT = 2; + private static final int FROM_REMOVE = 3; + + /** + * Default constructor for SharedUtils. + */ + public SharedUtils() { + //This constructor is intentionally left blank + } + + /** + * Return all occurrences of a certain modules code. + * + * @param currentPerson Person object containing all user information + * @param moduleCode String containing the current module code to be checked + * + * @return ArrayList of Partial Module containing information of all occurrences of the module code + */ + public static ArrayList getAllOccurrencesOfModule(Person currentPerson, String moduleCode) { + ArrayList modulesAddedList = currentPerson.getModulesList(); + ArrayList occurrenceList = currentPerson.getModulesAddedMap().get(moduleCode); + + ArrayList allOccurrencesOfModule = new ArrayList<>(); + + if (occurrenceList == null) { + return allOccurrencesOfModule; + } + + for (int i = 0; i < occurrenceList.size(); i++) { + allOccurrencesOfModule.add(modulesAddedList.get(occurrenceList.get(i))); + } + + return allOccurrencesOfModule; + } + + /** + * Prints all occurrences of a specific module without index. + * + * @param allOccurrence ArrayList containing information of all occurrence of a specific module + */ + public static void printAllOccurrencesOfModule(ArrayList allOccurrence) { + System.out.println("\nPrevious attempt(s) for " + allOccurrence.get(0).getModuleCode() + ":"); + System.out.println("\t Semester Grade"); + + for (int i = 0; i < allOccurrence.size(); i++) { + int currentSemester = allOccurrence.get(i).getSemesterIndex(); + String currentGrade = allOccurrence.get(i).getGrade(); + String toPrint = String.format("\t %02d %s ", currentSemester, currentGrade); + + System.out.println(toPrint); + } + } + + /** + * Prints all occurrences of a specific module with index. + * + * @param currentPerson Person object containing all user information + * @param moduleCode String containing the current module code to be checked + */ + public static void printAllOccurrencesOfModuleToEdit(Person currentPerson, String moduleCode) { + ArrayList allOccurrence = getAllOccurrencesOfModule(currentPerson, moduleCode); + + System.out.println("\nPrevious occurrence(s) for " + allOccurrence.get(0).getModuleCode() + ":"); + System.out.println("\tIndex Semester Grade"); + + for (int i = 0; i < allOccurrence.size(); i++) { + int currentSemester = allOccurrence.get(i).getSemesterIndex(); + String currentGrade = allOccurrence.get(i).getGrade(); + String toPrint = String.format("\t %d. %02d %s ", i + 1, currentSemester, currentGrade); + + System.out.println(toPrint); + } + } + + /** + * Returns the index of ModuleMap to be edited. + * + * @param in Unified scanner class from UI + * @param moduleCode Module code to be edited + * @param currentPerson Information regarding current user + * @param from Location in which this function is called + * + * @return int containing the index of ModuleMap to be edited + * + * @throws AcademicException Throws exception when the entered value is invalid + */ + public static int getEntryToBeEdited(Scanner in, String moduleCode, Person currentPerson, int from) + throws AcademicException { + ArrayList moduleIndexList = currentPerson.getModulesAddedMap().get(moduleCode); + + int indexToUpdate = 0; + + if (moduleIndexList.size() > 1) { + if (from == FROM_EDIT) { + System.out.print("Please enter the index of entry to be edited:"); + } else if (from == FROM_REMOVE) { + System.out.print("Please enter the index of entry to be removed:"); + } + + printAllOccurrencesOfModuleToEdit(currentPerson, moduleCode); + + String entryToEdit = in.nextLine().trim(); + + try { + indexToUpdate = parseInt(entryToEdit) - 1; + } catch (Exception e) { + throw new AcademicException("The value you entered is not an integer!"); + } + + if (!(indexToUpdate >= 0 && indexToUpdate < moduleIndexList.size())) { + throw new AcademicException("The index you entered does not exist within the list!"); + } + } + + return indexToUpdate; + } + + /** + * Checks if the semester to be edited already exist. + * + * @param semesterValue The semester value the user wish to change + * @param currentPerson Information of the current user + * @param moduleCode Module code to be edited + * @throws AcademicException Throws exception if the semester to be change already exists + */ + public static void verifyRepeatedSemester(int semesterValue, Person currentPerson, + String moduleCode, ArrayList userModuleList) throws AcademicException { + ArrayList moduleIndexList = currentPerson.getModulesAddedMap().get(moduleCode); + + for (int i = 0; i < moduleIndexList.size(); i++) { + if (semesterValue == userModuleList.get(moduleIndexList.get(i)).getSemesterIndex()) { + String errorMessage = String.format("%s already exist in semester %d!", moduleCode, semesterValue); + throw new AcademicException(errorMessage); + } + } + } + + /** + * Returns true if module is not allowed to be shifted forward, + * else returns false. + * + * @param newSemester semester to shift to + * @param userModuleList user's module list + * @param moduleCode module code + * @return boolean + */ + public static boolean notAllowedSemesterUpdateForward(int newSemester, ArrayList userModuleList, + String moduleCode) { + int latestPassSemester = getLatestPassSemester(userModuleList, moduleCode); + + if (newSemester > latestPassSemester && latestPassSemester != 0) { + return true; + } + return false; + } + + /** + * Returns true if module is not allowed to be shifted backward, + * else returns false. + * + * @param newSemester semester to shift to + * @param userModuleList user's module list + * @param moduleCode module code + * @return boolean + */ + public static boolean notAllowedSemesterUpdateBackward(int newSemester, ArrayList userModuleList, + String moduleCode) { + int latestFailSemester = getLatestFailSemester(userModuleList, moduleCode); + + if (newSemester < latestFailSemester && latestFailSemester != 0) { + return true; + } + return false; + } + + /** + * Checks user is updating from fail to passing grade. + * + * @param previousGrade User's previous grade + * @param newGrade User's new grade + * + * @return User is updating from fail to passing grade. + */ + public static boolean fromFailingToPass(String previousGrade, String newGrade) { + ModuleValidator validator = new ModuleValidator(); + + boolean isFailPrevious = validator.isRetakeGrade(previousGrade); + boolean isFailNew = validator.isRetakeGrade(newGrade); + + return (isFailPrevious == true && isFailNew == false); + } + + + /** + * Returns the latest semester taken for the module. + * + * @param modulesAddedList List of modules added + * @param indexArrayList List of indexes for all occurrences of current module + * + * @return latestSemester the latest semester + */ + public static int getLatestSemester(ArrayList modulesAddedList, ArrayList indexArrayList) { + int latestSemester = modulesAddedList.get(indexArrayList.get(0)).getSemesterIndex(); + + for (int index = 0; index < indexArrayList.size(); index++) { + Integer currentIndexForModule = indexArrayList.get(index); + int currentSemester = modulesAddedList.get(currentIndexForModule).getSemesterIndex(); + + if (currentSemester > latestSemester) { + latestSemester = currentSemester; + } + } + return latestSemester; + } + + /** + * Returns the occurrence of the module taken in the latest semester. + * + * @param modulesAddedList List of modules added + * @param indexArrayList List of indexes for all occurrences of current module + * + * @return latestSemester the occurrence of the module taken in the latest semester + */ + public static PartialModule getLatestSemesterModule(ArrayList modulesAddedList, + ArrayList indexArrayList) { + PartialModule latestSemesterModule = modulesAddedList.get(indexArrayList.get(0)); + + for (int index = 0; index < indexArrayList.size(); index++) { + Integer currentIndexForModule = indexArrayList.get(index); + PartialModule currentSemesterModule = modulesAddedList.get(currentIndexForModule); + + if (currentSemesterModule.getSemesterIndex() > latestSemesterModule.getSemesterIndex()) { + latestSemesterModule = currentSemesterModule; + } + } + return latestSemesterModule; + } + + /** + * Returns semester index of latest failed module. + * + * @param modulesAddedList user list of module + * @param moduleCode module code + * @return latest fail semester + */ + public static int getLatestFailSemester(ArrayList modulesAddedList, String moduleCode) { + ModuleValidator validator = new ModuleValidator(); + int latestFailSemester = 0; + for (PartialModule m : modulesAddedList) { + if (m.getModuleCode().equalsIgnoreCase(moduleCode) && validator.isRetakeGrade(m.getGrade()) + && m.getSemesterIndex() > latestFailSemester) { + latestFailSemester = m.getSemesterIndex(); + } + } + return latestFailSemester; + } + + /** + * Returns semester index of latest pass module. + * + * @param modulesAddedList user list of module + * @param moduleCode module code + * @return latest pass semester + */ + public static int getLatestPassSemester(ArrayList modulesAddedList, String moduleCode) { + ModuleValidator validator = new ModuleValidator(); + int latestPassSemester = 0; + for (PartialModule m : modulesAddedList) { + if (m.getModuleCode().equalsIgnoreCase(moduleCode) && !validator.isRetakeGrade(m.getGrade()) + && m.getSemesterIndex() > latestPassSemester) { + latestPassSemester = m.getSemesterIndex(); + } + } + return latestPassSemester; + } + + /** + * Gets the module with the largest cap for the current person given a certain module code. + * + * @param currentPerson Person object + * @param moduleCode Module code to be checked + * + * @return Module with the largest cap + */ + public static PartialModule getLargestCapForModule(Person currentPerson, String moduleCode) { + ArrayList modulesAddedList = currentPerson.getModulesList(); + ArrayList indexArrayList = currentPerson.getModulesAddedMap().get(moduleCode); + + PartialModule moduleWithLargestCap = null; + + if (indexArrayList != null) { + moduleWithLargestCap = modulesAddedList.get(indexArrayList.get(0)); + + for (int index = 0; index < indexArrayList.size(); index++) { + Integer currentIndexForModule = indexArrayList.get(index); + PartialModule currentModule = modulesAddedList.get(currentIndexForModule); + + if (currentModule.getCap() > moduleWithLargestCap.getCap()) { + moduleWithLargestCap = currentModule; + } + } + } + + return moduleWithLargestCap; + } + + //@@author harryleecp + + /** + * Update user's module map with information from user's module list. + * + * @param modulesList list of user's modules + * @param currentPerson current user + */ + public static void updateHashmap(ArrayList modulesList, Person currentPerson) { + HashMap> newModuleAddedMap = new HashMap<>(); + for (int index = 0; index < modulesList.size(); index++) { + String currentModuleCode = modulesList.get(index).getModuleCode(); + + if (newModuleAddedMap.containsKey(currentModuleCode)) { + newModuleAddedMap.get(currentModuleCode).add(index); + } else { + ArrayList newIndexArray = new ArrayList<>(); + newIndexArray.add(index); + newModuleAddedMap.put(modulesList.get(index).getModuleCode(), newIndexArray); + } + } + currentPerson.setModulesAddedMap(newModuleAddedMap); + } +} diff --git a/src/main/java/seedu/duke/apps/academicplanner/exceptions/AcademicException.java b/src/main/java/seedu/duke/apps/academicplanner/exceptions/AcademicException.java new file mode 100644 index 0000000000..77abf81cf7 --- /dev/null +++ b/src/main/java/seedu/duke/apps/academicplanner/exceptions/AcademicException.java @@ -0,0 +1,27 @@ +package seedu.duke.apps.academicplanner.exceptions; + +//@@author Khenus +/** + * Signals that an invalid command has been given in the Academic Planner App. + */ +public class AcademicException extends Exception { + private String errorMessage; + + private static final String NEW_LINE = "\n"; + private static final String EXITING_CURRENT_COMMAND = "Exiting current command back to Academic Planner Main Menu."; + + /** + * Default constructor for Academic Exception. + * + * @param errorMessage accompanying message + */ + public AcademicException(String errorMessage) { + String stringToPrint = errorMessage + NEW_LINE + EXITING_CURRENT_COMMAND; + this.errorMessage = stringToPrint; + } + + @Override + public String getMessage() { + return this.errorMessage; + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/CapCalculatorApp.java b/src/main/java/seedu/duke/apps/capcalculator/CapCalculatorApp.java new file mode 100644 index 0000000000..849bfb553e --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/CapCalculatorApp.java @@ -0,0 +1,92 @@ +package seedu.duke.apps.capcalculator; + +import seedu.duke.global.App; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; +import java.math.RoundingMode; +import java.text.DecimalFormat; + +import static seedu.duke.parser.AppParser.CAP_CALCULATOR; + +//@@author JuZihao +/** + * Class representing the CAP Calculator app in PlanNUS. + */ +public class CapCalculatorApp extends App { + private static final String NEW_LINE = "\n"; + private static final String EXITING_CURRENT_COMMAND = "Exiting current command back to Cap Calculator Main Menu."; + private static final String ERROR_INVALID_COMMAND = "INVALID COMMAND"; + private static final String EXIT_MESSAGE = "Thank you for using Cap Calculator!"; + private static final String WELCOME_MESSAGE = "Welcome to CAP Calculator!\n" + + "Initializing your CAP..."; + private static final String COMMANDS_LIST = "Available commands are:\n" + + "\tcurrent\n" + + "\tset target\n" + + "\tset su\n" + + "\tacadplan\n" + + "\thelp\n" + + "\texit"; + + private final Person currentPerson; + private final Ui ui; + private final DecimalFormat formatFinalCap = new DecimalFormat("#.##"); + + public CapCalculatorApp(Person currentPerson, Ui ui) { + this.currentPerson = currentPerson; + this.ui = ui; + } + + /** + * Main function for CAP Calculator. + */ + public void run() { + ui.printLine(); + showWelcomeMessage(); + boolean isExit = false; + formatFinalCap.setRoundingMode(RoundingMode.UP); + + while (!isExit) { + try { + ui.showCalculatorAwaitCommand(); + ui.printLine(); + String userInput = ui.getScanner().nextLine(); + Command commandInput = CapCalculatorParser.parse(userInput, currentPerson, ui); + commandInput.execute(); + + if (commandInput.getIsChangeApp()) { + setIsChangeApp(commandInput.getIsChangeApp()); + setCurrentApp(commandInput.getNewApp()); + } else { + setIsChangeApp(false); + setCurrentApp(CAP_CALCULATOR); + } + + isExit = commandInput.getIsExit(); + } catch (NumberFormatException e) { + System.out.println(ERROR_INVALID_COMMAND + NEW_LINE + EXITING_CURRENT_COMMAND); + } catch (Exception e) { + System.out.println(e.getMessage()); + } + } + ui.printLine(); + showExitMessage(); + } + + + /** + * Prints out welcome message when user enters CAP Calculator. + */ + private void showWelcomeMessage() { + System.out.println(WELCOME_MESSAGE + NEW_LINE); + System.out.println(COMMANDS_LIST); + } + + /** + * Prints out exit message when user enters CAP Calculator. + */ + private void showExitMessage() { + System.out.println(EXIT_MESSAGE); + } + +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/CapCalculatorParser.java b/src/main/java/seedu/duke/apps/capcalculator/CapCalculatorParser.java new file mode 100644 index 0000000000..4150ad9e11 --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/CapCalculatorParser.java @@ -0,0 +1,156 @@ +package seedu.duke.apps.capcalculator; + +import seedu.duke.apps.capcalculator.commands.CurrentCommand; +import seedu.duke.apps.capcalculator.commands.PrintHelpCommand; +import seedu.duke.apps.capcalculator.commands.SetTargetCommand; +import seedu.duke.global.exceptions.CommandParserException; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import java.util.Scanner; + +import static seedu.duke.apps.academicplanner.AcademicPlannerParser.NEW_LINE; +import static seedu.duke.apps.academicplanner.AcademicPlannerParser.hasNoParameter; +import static seedu.duke.parser.AppParser.ACADEMIC_PLANNER; + +//@@author JuZihao +/** + * Class representing the parser used in the CAP Calculator app. + */ +public class CapCalculatorParser { + private static final int COMMAND_INDEX = 0; + private static final int SECOND_COMMAND_INDEX = 1; + private static final int CORRECT_COMMAND_LENGTH = 2; + private static final String PROMPT_SU_CHOICES = "Enter the number corresponding to the method you wish to S/U:\n" + + "\t1) Semester\n" + + "\t2) Modules"; + private static final String INVALID_COMMAND_MESSAGE = "INVALID COMMAND"; + private static final String INVALID_SET_COMMAND_MESSAGE = "OOPS!!! Looks like you entered an invalid set command!"; + private static final String CURRENT_COMMAND = "CURRENT"; + private static final String SET_COMMAND = "SET"; + private static final String TARGET_COMMAND = "TARGET"; + private static final String SU_COMMAND = "SU"; + private static final String EXIT_COMMAND = "EXIT"; + private static final String HELP_COMMAND = "HELP"; + private static final String TO_ACADEMIC_PLANNER = "ACADPLAN"; + private static final String CAP_CALCULATOR_COMMAND = "CAPCALC"; + private static final String SWITCH_APP_ERROR = "Sorry, you are already in CAP calculator!"; + private static final String ERROR_HAS_PARAMETER = " NO PARAMETER ALLOWED AFTER COMMAND"; + private static final String MISSING_SET_PARAMETER = "OOPS!!! Looks like you did not specify a set command type!"; + private static final String EXITING_CURRENT_COMMAND = "Exiting current command back to CAP Calculator Main Menu."; + + /** + * Processes user input command and returns command to be executed. + * + * @param userInput user input + * @param currentPerson user of PlanNUS + * @param ui ui + * @return Command to be executed + * @throws CommandParserException thrown when an invalid command is entered + */ + public static Command parse(String userInput, Person currentPerson, Ui ui) throws CommandParserException { + Scanner in = ui.getScanner(); + String [] inputs = processInput(userInput); + String userCommand = inputs[COMMAND_INDEX]; + + if (userCommand.equals(CURRENT_COMMAND) && hasNoParameter(inputs)) { + return new CurrentCommand(currentPerson); + } else if (userCommand.equals(SET_COMMAND) && getSetType(inputs).equals(TARGET_COMMAND)) { + return new SetTargetCommand(currentPerson, ui); + } else if (userCommand.equals(SET_COMMAND) && getSetType(inputs).equals(SU_COMMAND)) { + promptUserForSuCommand(); + String choice = in.nextLine().trim(); + return SetSuParser.parse(choice, currentPerson, ui); + } else if (userCommand.equals(HELP_COMMAND) && hasNoParameter(inputs)) { + return new PrintHelpCommand(); + } else if (userCommand.equals(TO_ACADEMIC_PLANNER) && hasNoParameter(inputs)) { + return new Command(true, true, ACADEMIC_PLANNER); + } else if (userCommand.equals(EXIT_COMMAND) && hasNoParameter(inputs)) { + return new Command(true); + } else if (userCommand.equals(CAP_CALCULATOR_COMMAND) && hasNoParameter(inputs)) { + throw new CommandParserException(SWITCH_APP_ERROR + NEW_LINE + EXITING_CURRENT_COMMAND); + } else { + String errorMessage = determineError(inputs); + throw new CommandParserException(errorMessage + NEW_LINE + EXITING_CURRENT_COMMAND); + } + } + + /** + * Processes user input to remove whitespaces and return a string array. + * + * @param userInput user input + * @return string array + */ + public static String[] processInput(String userInput) { + userInput = userInput.replaceAll("\\s+"," "); + String[] inputs = userInput.toUpperCase().split(" "); + return inputs; + } + + /** + * Checks for the type of error and returns corresponding message. + * + * @param inputs user input + * @return error message + */ + private static String determineError(String[] inputs) { + switch (inputs[COMMAND_INDEX]) { + case HELP_COMMAND: + return ("HELP COMMAND:" + ERROR_HAS_PARAMETER); + case CURRENT_COMMAND: + return ("CURRENT COMMAND:" + ERROR_HAS_PARAMETER); + case TO_ACADEMIC_PLANNER: + return ("ACADPLAN COMMAND:" + ERROR_HAS_PARAMETER); + case CAP_CALCULATOR_COMMAND: + return ("CAPCALC COMMAND:" + ERROR_HAS_PARAMETER); + case EXIT_COMMAND: + return ("EXIT COMMAND:" + ERROR_HAS_PARAMETER); + case SET_COMMAND: + if (inputs[SECOND_COMMAND_INDEX].equals(TARGET_COMMAND)) { + return ("SET TARGET COMMAND:" + ERROR_HAS_PARAMETER); + } else if (inputs[SECOND_COMMAND_INDEX].equals(SU_COMMAND)) { + return ("SET SU COMMAND:" + ERROR_HAS_PARAMETER); + } else { + return (INVALID_SET_COMMAND_MESSAGE); + } + default: + return INVALID_COMMAND_MESSAGE; + } + } + + /** + * Returns true if input has two parameters else returns false. + * + * @param inputs user input + * @return true or false + */ + private static boolean hasTwoParameters(String[] inputs) { + return inputs.length == CORRECT_COMMAND_LENGTH; + } + + /** + * Returns the set command type. + * + * @param inputs user input + * @return true or false + * @throws CommandParserException thrown when a command that has only one parameter is entered + */ + private static String getSetType(String[] inputs) throws CommandParserException { + if (hasNoParameter(inputs)) { + throw new CommandParserException(MISSING_SET_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND); + } else if (hasTwoParameters(inputs)) { + return inputs[SECOND_COMMAND_INDEX]; + } else { + String errorMessage = determineError(inputs); + throw new CommandParserException(errorMessage + NEW_LINE + EXITING_CURRENT_COMMAND); + } + } + + /** + * Prompt user to enter which S/U command to be parsed. + */ + private static void promptUserForSuCommand() { + System.out.println(PROMPT_SU_CHOICES); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/SetSuParser.java b/src/main/java/seedu/duke/apps/capcalculator/SetSuParser.java new file mode 100644 index 0000000000..f6ae4864d5 --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/SetSuParser.java @@ -0,0 +1,35 @@ +package seedu.duke.apps.capcalculator; + +import seedu.duke.apps.capcalculator.commands.SetSuByModuleCommand; +import seedu.duke.apps.capcalculator.commands.SetSuBySemesterCommand; +import seedu.duke.global.exceptions.CommandParserException; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +//@@author JuZihao +/** + * Class representing the parser used for set su command. + */ +public class SetSuParser { + private static final String BY_MODULES = "2"; + private static final String BY_SEMESTER = "1"; + private static final String INVALID_SU_ERROR = "Number entered does not correspond to any S/U method."; + + /** + * Processes user input command and returns which set su command to be parsed. + * + * @param currentPerson user of PlanNUS + * @return Command to be executed + * @throws CommandParserException thrown when an invalid input is entered + */ + public static Command parse(String choice, Person currentPerson, Ui ui) throws CommandParserException { + if (choice.equals(BY_SEMESTER)) { + return new SetSuBySemesterCommand(currentPerson, ui); + } else if (choice.equals(BY_MODULES)) { + return new SetSuByModuleCommand(currentPerson, ui); + } else { + throw new CommandParserException(INVALID_SU_ERROR); + } + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commands/CurrentCommand.java b/src/main/java/seedu/duke/apps/capcalculator/commands/CurrentCommand.java new file mode 100644 index 0000000000..57d58a429a --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commands/CurrentCommand.java @@ -0,0 +1,65 @@ +package seedu.duke.apps.capcalculator.commands; + +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import static seedu.duke.apps.capcalculator.commons.CalculatorUtils.formatCapToString; + +//@@author JuZihao +/** + * Class representing the Current CAP command for CAP Calculator. + */ +public class CurrentCommand extends Command { + + private Person currentPerson; + + public CurrentCommand(Person currentPerson) { + this.currentPerson = currentPerson; + } + + /** + * Prints out user's current cap obtained from his/her academic calendar. + */ + @Override + public void execute() { + double currentCap = getCurrentCap(); + displayCurrentCap(currentCap); + displayCurrentMcAfterSU(currentPerson.getCurrentMcAfterSU()); + displayCurrentMc(currentPerson.getCurrentMc()); + } + + /** + * Returns user current cap. + * + * @return CAP + */ + public double getCurrentCap() { + return currentPerson.getCurrentTotalMcxGrade() / (double) currentPerson.getCurrentMcAfterSU(); + } + + /** + * Displays user's current CAP. + * + * @param currentCap user's current CAP + */ + public void displayCurrentCap(double currentCap) { + System.out.println("Your current CAP is: " + formatCapToString(currentCap)); + } + + /** + * Displays user's graded MCs. + * + * @param currentMcAfterSU user's graded MCs + */ + public void displayCurrentMcAfterSU(int currentMcAfterSU) { + System.out.println("Number of graded MCs taken is: " + currentMcAfterSU); + } + + /** + * Displays user's total MCs. + * + * @param currentMc user's total MCs + */ + public void displayCurrentMc(int currentMc) { + System.out.println("Total number of MCs taken is: " + currentMc); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commands/PrintHelpCommand.java b/src/main/java/seedu/duke/apps/capcalculator/commands/PrintHelpCommand.java new file mode 100644 index 0000000000..625330b6ba --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commands/PrintHelpCommand.java @@ -0,0 +1,29 @@ +package seedu.duke.apps.capcalculator.commands; + +import seedu.duke.global.Command; + +//@author Ju Zihao +/** + * Class representing a print help command from the academic planner. + */ +public class PrintHelpCommand extends Command { + + private static final String COMMANDS_LIST = "Available commands are:\n" + + "\tcurrent\n" + + "\tset target\n" + + "\tset su\n" + + "\tacadplan\n" + + "\thelp\n" + + "\texit"; + + public PrintHelpCommand() { + //Constructor is intentionally left blank + } + + /** + * Prints commands list for academic planner. + */ + public void execute() { + System.out.println(COMMANDS_LIST); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commands/SetSuByModuleCommand.java b/src/main/java/seedu/duke/apps/capcalculator/commands/SetSuByModuleCommand.java new file mode 100644 index 0000000000..00d42b7af9 --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commands/SetSuByModuleCommand.java @@ -0,0 +1,39 @@ +package seedu.duke.apps.capcalculator.commands; + +import seedu.duke.apps.capcalculator.commons.SetSuUtils; +import seedu.duke.apps.capcalculator.exceptions.CapCalculatorException; +import seedu.duke.global.Command; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import java.util.ArrayList; + +//@@author JuZihao +/** + * Class representing the set S/U by modules command for CAP Calculator. + */ +public class SetSuByModuleCommand extends Command { + + private SetSuUtils setSuUtils; + private ArrayList suList; + + public SetSuByModuleCommand(Person currentPerson, Ui ui) { + this.setSuUtils = new SetSuUtils(currentPerson, ui); + } + + /** + * Function to calculate the best CAP after S/Uing some specific modules. + */ + @Override + public void execute() { + try { + int numberOfModulesToSu = setSuUtils.promptUserForNumberOfModules(); + suList = setSuUtils.getSuListByModule(numberOfModulesToSu); + setSuUtils.showSuListToUser(suList); + setSuUtils.showResultsToUser(suList); + } catch (CapCalculatorException e) { + System.out.println(e.getMessage()); + } + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commands/SetSuBySemesterCommand.java b/src/main/java/seedu/duke/apps/capcalculator/commands/SetSuBySemesterCommand.java new file mode 100644 index 0000000000..3227163494 --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commands/SetSuBySemesterCommand.java @@ -0,0 +1,38 @@ +package seedu.duke.apps.capcalculator.commands; + +import seedu.duke.apps.capcalculator.commons.SetSuUtils; +import seedu.duke.apps.capcalculator.exceptions.CapCalculatorException; +import seedu.duke.global.Command; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import java.util.ArrayList; + +//@@author JuZihao +/** + * Class representing the set S/U by semester command for CAP Calculator. + */ +public class SetSuBySemesterCommand extends Command { + private SetSuUtils setSuUtils; + private ArrayList suList; + + public SetSuBySemesterCommand(Person currentPerson, Ui ui) { + this.setSuUtils = new SetSuUtils(currentPerson, ui); + } + + /** + * Function to calculate the best CAP after S/Uing a specific semester. + */ + @Override + public void execute() { + try { + int semesterToSu = setSuUtils.promptUserForSemester(); + suList = setSuUtils.getSuListBySemester(semesterToSu); + setSuUtils.showSuListToUser(suList); + setSuUtils.showResultsToUser(suList); + } catch (CapCalculatorException e) { + System.out.println(e.getMessage()); + } + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commands/SetTargetCommand.java b/src/main/java/seedu/duke/apps/capcalculator/commands/SetTargetCommand.java new file mode 100644 index 0000000000..c7d842ffba --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commands/SetTargetCommand.java @@ -0,0 +1,66 @@ +package seedu.duke.apps.capcalculator.commands; + +import seedu.duke.apps.capcalculator.exceptions.InvalidCapException; +import seedu.duke.apps.capcalculator.exceptions.InvalidCreditException; +import seedu.duke.global.Command; +import seedu.duke.global.LoggingTool; +import seedu.duke.global.objects.Person; +import seedu.duke.apps.capcalculator.commons.SetTargetUtils; +import seedu.duke.ui.Ui; + +import java.io.File; +import java.util.Scanner; +import java.io.IOException; +import java.util.logging.FileHandler; +import java.util.logging.Level; +import java.util.logging.Logger; + +//@@author JuZihao +/** + * Class representing the Set target CAP command for CAP Calculator. + */ +public class SetTargetCommand extends Command { + private static final double MAXIMUM_CAP = 5.00; + private static final String LOG_FILE_NAME = "logs/SetTargetCommand.log"; + private static final String LOGGER_NAME = "SetTargetCommand"; + + private static Logger logger; + private static FileHandler fh; + private SetTargetUtils setTargetUtils; + + public SetTargetCommand(Person currentPerson, Ui ui) { + this.setTargetUtils = new SetTargetUtils(currentPerson, ui.getScanner()); + } + + /** + * Function to calculate CAP needed to obtain target grades. + */ + @Override + public void execute() { + try { + File file = new File("logs"); + file.mkdirs(); + fh = new FileHandler(LOG_FILE_NAME); + logger = new LoggingTool(LOGGER_NAME, fh).initialize(); + + logger.log(Level.INFO,"Executing set target command."); + double targetCap = setTargetUtils.getTargetCap(); + int targetMCs = setTargetUtils.getTargetGradedMC(); + assert targetCap <= MAXIMUM_CAP; + assert targetMCs > 0; + setTargetUtils.showResultsToUser(targetCap, targetMCs); + logger.log(Level.INFO,"Finish executing set target command."); + fh.close(); + } catch (InvalidCapException e) { + logger.log(Level.WARNING,"Cap entered is more than 5.00."); + fh.close(); + System.out.println(e.getMessage()); + } catch (InvalidCreditException e) { + logger.log(Level.WARNING,"MC entered is less than 0."); + fh.close(); + System.out.println(e.getMessage()); + } catch (IOException e) { + System.out.println(e.getMessage()); + } + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commons/CalculatorUtils.java b/src/main/java/seedu/duke/apps/capcalculator/commons/CalculatorUtils.java new file mode 100644 index 0000000000..ed8e63360d --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commons/CalculatorUtils.java @@ -0,0 +1,296 @@ +package seedu.duke.apps.capcalculator.commons; + +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; + +import java.math.BigDecimal; +import java.math.RoundingMode; +import java.text.DecimalFormat; + +//@@author Khenus +/** + * Class representing common functions for the CAP Calculator. + */ +public class CalculatorUtils { + private static final int FROM_ADD = 1; + private static final int FROM_EDIT = 2; + private static final int FROM_REMOVE = 3; + private static final DecimalFormat formatFinalCap = new DecimalFormat("#.##"); + protected static final double MAXIMUM_CAP = 5.00; + protected static final double F_GRADE_CAP = 0.00; + protected static final double U_GRADE_CAP = -2.00; + protected static final double NON_GRADED_CAP = -3.00; + protected static final double S_GRADE_CAP = -1.00; + + private final Person currentPerson; + + public CalculatorUtils(Person currentPerson) { + this.currentPerson = currentPerson; + } + + /** + * Update Cap after every change in current module list. + * + * @param type An int storing the type of function calling update cap + * @param currentModule A PartialModule object storing current module + * @param caps An optional number of double storing old cap and new cap (If you send in old, must send in new also) + */ + public void updateCap(int type, PartialModule currentModule, double... caps) { + // Caps is an array, 0 being oldCap, 1 being newCap + if (type == FROM_ADD && !isNonGraded(currentModule.getCap())) { + updateCapFromAdd(currentModule); + + } else if (type == FROM_REMOVE) { + if (!isNonGraded(currentModule.getCap())) { + //Decreasing total MC regardless of SU + currentPerson.setCurrentMc(currentPerson.getCurrentMc() + - currentModule.getModuleCredit()); + + //Decreasing total MC after SU only if module is not SU + if (!isSu(currentModule.getCap())) { + editCapGradedToSu(currentModule, currentModule.getCap()); + } + } + + } else if (type == FROM_EDIT) { + if (isFromSuToGraded(caps)) { + //Case where previously was SU but new is not SU + editCapSuToGraded(currentModule, caps[1]); + + } else if (isFromGradedToSu(caps)) { + //Case where previously was not SU but now is SU + editCapGradedToSu(currentModule, caps[0]); + + } else if (isFromGradedToGraded(caps)) { + //Case where previously and new cap are not SU but not the same + editCapGradedToGraded(currentModule, caps); + + } else if (isFromGradedToNonGraded(caps)) { + //Case where previously was graded but new is special + currentPerson.setCurrentMc(currentPerson.getCurrentMc() + - currentModule.getModuleCredit()); + editCapGradedToSu(currentModule, caps[0]); + + } else if (isFromSuToNonGraded(caps)) { + //Case where previously was S/U but new is special + currentPerson.setCurrentMc(currentPerson.getCurrentMc() + - currentModule.getModuleCredit()); + + } else if (isFromNonGradedToGraded(caps)) { + //Case where previously was special but new is graded or S/U + updateCapFromAdd(currentModule); + } + } + } + + + /** + * Returns true if the module provided was from a letter grade, + * else returns false. + * + * @param cap Academic points of original and edited module + * @return boolean + */ + private boolean isGraded(double cap) { + return cap >= F_GRADE_CAP; + } + + /** + * Returns true if the module provided was from a S/U grade, + * else returns false. + * + * @param cap Academic points of original and edited module + * @return boolean + */ + private boolean isSu(double cap) { + return (cap == S_GRADE_CAP); + } + + /** + * Returns true if the module provided was from a special grade, + * else returns false. + * + * @param cap Academic points of original and edited module + * @return boolean + */ + private boolean isNonGraded(double cap) { + return cap == NON_GRADED_CAP || cap == U_GRADE_CAP; + } + + /** + * Returns true if edited module was from a letter grade to letter grade, + * else returns false. + * + * @param caps Academic points of original and edited module + * @return boolean + */ + private boolean isFromGradedToGraded(double[] caps) { + return caps[0] != caps[1] && isGraded(caps[0]) && isGraded(caps[1]); + } + + /** + * Returns true if edited module was from a letter grade to S/U grade, + * else returns false. + * + * @param caps Academic points of original and edited module + * @return boolean + */ + private boolean isFromGradedToSu(double[] caps) { + return isGraded(caps[0]) && isSu(caps[1]); + } + + /** + * Returns true if edited module was from a letter grade to a special grade, + * else returns false. + * + * @param caps Academic points of original and edited module + * @return boolean + */ + private boolean isFromGradedToNonGraded(double[] caps) { + return isGraded(caps[0]) && isNonGraded(caps[1]); + } + + /** + * Returns true if edited module was from a S/U grade to letter grade, + * else returns false. + * + * @param caps Academic points of original and edited module + * @return boolean + */ + private boolean isFromSuToGraded(double[] caps) { + return isSu(caps[0]) && isGraded(caps[1]); + } + + /** + * Returns true if edited module was from a S/U grade to special grade, + * else returns false. + * + * @param caps Academic points of original and edited module + * @return boolean + */ + private boolean isFromSuToNonGraded(double[] caps) { + return isSu(caps[0]) && isNonGraded(caps[1]); + } + + /** + * Returns true if edited module was from a special grade to graded grade, + * else returns false. + * + * @param caps Academic points of original and edited module + * @return boolean + */ + private boolean isFromNonGradedToGraded(double[] caps) { + return isNonGraded(caps[0]) && !isNonGraded(caps[1]); + } + + /** + * Updates CAP when User edits module from a letter grade to a letter grade. + * + * @param currentModule module that was edited + * @param caps array of previous and new cap + */ + private void editCapGradedToGraded(PartialModule currentModule, double[] caps) { + double oldMCxGrade = caps[0] * currentModule.getModuleCredit(); + double newMCxGrade = caps[1] * currentModule.getModuleCredit(); + double mcxGradeToSet = newMCxGrade - oldMCxGrade; + + //Updating total academic points to this point + currentPerson.setCurrentTotalMcxGrade(currentPerson.getCurrentTotalMcxGrade() + + mcxGradeToSet); + } + + /** + * Updates CAP when User edits module from a letter grade to a S/U grade. + * + * @param currentModule module that was edited + * @param cap user's CAP + */ + private void editCapGradedToSu(PartialModule currentModule, double cap) { + double mcxGradeToMinus = cap * currentModule.getModuleCredit(); + + //Updating total MCs + currentPerson.setCurrentMcAfterSU(currentPerson.getCurrentMcAfterSU() + - currentModule.getModuleCredit()); + + //Updated total Academic Points + currentPerson.setCurrentTotalMcxGrade(currentPerson.getCurrentTotalMcxGrade() + - mcxGradeToMinus); + } + + /** + * Updates CAP when User edits module from a S/U grade to a letter grade. + * + * @param currentModule module that was edited + * @param cap user's CAP + */ + private void editCapSuToGraded(PartialModule currentModule, double cap) { + double newMCxGrade = cap * currentModule.getModuleCredit(); + + //Updating total MCs + currentPerson.setCurrentMcAfterSU(currentPerson.getCurrentMcAfterSU() + + currentModule.getModuleCredit()); + + //Updated total Academic Points + currentPerson.setCurrentTotalMcxGrade(currentPerson.getCurrentTotalMcxGrade() + + newMCxGrade); + } + + /** + * Updates CAP when User adds in a new module. + * + * @param currentModule module that is newly added + */ + private void updateCapFromAdd(PartialModule currentModule) { + //Incrementing total MC regardless of SU + + int moduleCredit = currentModule.getModuleCredit(); + currentPerson.setCurrentMc(currentPerson.getCurrentMc() + moduleCredit); + + //Incrementing total MC after SU only if module is not SU + if (currentModule.getCap() != -1.00) { + editCapSuToGraded(currentModule, currentModule.getCap()); + } + } + + //@@author JuZihao + /** + * Returns CAP score as a string. + * + * @param academicPoint academic point to parse + * @return string of academic point + */ + public static String formatCapToString(double academicPoint) { + if (isNaN(academicPoint)) { + return "0"; + } + return formatFinalCap.format(academicPoint); + } + + /** + * Returns true if CAP is NaN + * else returns false. + * + * @param academicPoint academic point to check + * @return boolean + */ + public static boolean isNaN(double academicPoint) { + return (academicPoint != academicPoint); + } + + /** + * Returns a double value that has been rounded at a given decimal place. + * + * @param value to be rounded + * @param places number of decimal points to be rounded + * @return a double value that has been rounded + */ + public static double round(double value, int places) { + if (places < 0) { + throw new IllegalArgumentException(); + } + + BigDecimal bd = BigDecimal.valueOf(value); + bd = bd.setScale(places, RoundingMode.HALF_UP); + return bd.doubleValue(); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commons/SetSuUtils.java b/src/main/java/seedu/duke/apps/capcalculator/commons/SetSuUtils.java new file mode 100644 index 0000000000..a3bf46f799 --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commons/SetSuUtils.java @@ -0,0 +1,349 @@ +package seedu.duke.apps.capcalculator.commons; + +import seedu.duke.apps.capcalculator.exceptions.CapCalculatorException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import java.util.ArrayList; +import java.util.Comparator; +import java.util.Scanner; + +import static java.util.stream.Collectors.toList; +import static seedu.duke.apps.capcalculator.commons.CalculatorUtils.formatCapToString; + +//@@author JuZihao +/** + * Class representing common functions for the set S/U commands. + */ +public class SetSuUtils { + private static final String VALID_SEMESTERS = "Valid semesters are integers from 1 to 10, inclusive."; + private static final String PROMPT_SU_SEMESTER_VALUE = "Please enter a semester you wish to S/U."; + private static final String SU_SUGGESTION_PROMPT = "In order to obtain the highest Cap possible," + + "the modules you should be S/Uing are:"; + private static final String SINGLE_SU_SUGGESTION_PROMPT = "In order to obtain the highest Cap possible," + + "the module you should be S/Uing is:"; + private static final String NO_SUGGESTION_PROMPT = "Looks like you do not have to S/U any modules!"; + private static final String PROMPT_MODULE_VALUE = "Please enter how many modules you wish to S/U."; + private static final String INVALID_SEMESTER_ERROR = "Looks like the semester you entered is not valid!"; + private static final String NOT_NUMBER_ERROR = "Looks like the semester you entered is not an integer!"; + private static final String INVALID_NUMBER_ERROR = "Looks like the number of modules you " + + "entered is not an integer!"; + private static final String INVALID_MODULE_ERROR = "Looks like you did not take the module you entered " + + "or the module you entered has a grade that cannot be S/Ued!"; + private static final String NUMBER_OUT_OF_BOUND_ERROR = "Looks like the number you entered " + + "is more than the numbers of modules you took."; + private static final String EMPTY_LIST_ERROR = "Looks like your S/U list is empty!"; + private static final String DUPLICATE_MODULE_ERROR = "Looks like you have already added this module!"; + private static final int STARTING_SEMESTER_INDEX = 1; + private static final int FINAL_SEMESTER_INDEX = 10; + private static final int DISPLAY_PREFIX = 1; + + private Person currentPerson; + private Ui ui; + private Scanner in; + + /** + * Instantiates a new Set su utils. + * + * @param currentPerson the current person + * @param ui that deals with interaction with user + */ + public SetSuUtils(Person currentPerson, Ui ui) { + this.currentPerson = currentPerson; + this.in = ui.getScanner(); + this.ui = ui; + } + + /** + * Prints prompt and help messages for user to enter module's grade. + * + * @return the semester entered by user + * @throws CapCalculatorException if the semester entered is not valid + */ + public int promptUserForSemester() throws CapCalculatorException { + try { + System.out.println(PROMPT_SU_SEMESTER_VALUE); + System.out.println(VALID_SEMESTERS); + int semester = Integer.parseInt(in.nextLine().trim()); + if (isValidSemester(semester)) { + return semester; + } else { + throw new CapCalculatorException(INVALID_SEMESTER_ERROR); + } + } catch (NumberFormatException e) { + throw new CapCalculatorException(NOT_NUMBER_ERROR); + } + } + + /** + * Prompt user to enter number of modules. + * + * @return number of modules entered by user + * @throws CapCalculatorException if the number entered is not valid + */ + public int promptUserForNumberOfModules() throws CapCalculatorException { + try { + System.out.println(PROMPT_MODULE_VALUE); + int numberOfModules = Integer.parseInt(in.nextLine().trim()); + if (isValidNumber(numberOfModules)) { + return numberOfModules; + } + throw new CapCalculatorException(NUMBER_OUT_OF_BOUND_ERROR); + } catch (NumberFormatException e) { + throw new CapCalculatorException(INVALID_NUMBER_ERROR); + } + } + + /** + * Returns a sorted S/U list by semester. + * + * @param semesterToSu the semester to S/U + * @return the S/U list by semester + * @throws CapCalculatorException if the S/U list is empty + */ + public ArrayList getSuListBySemester(int semesterToSu) throws CapCalculatorException { + ArrayList suList = (ArrayList) currentPerson.getModulesList().stream() + .filter((partialModule) -> partialModule.getSemesterIndex() == semesterToSu) + .filter(this::isValidSuModule) + .collect(toList()); + if (isEmptyList(suList)) { + throw new CapCalculatorException(EMPTY_LIST_ERROR); + } else { + suList.sort(Comparator.comparing(PartialModule::getCap)); + return suList; + } + } + + /** + * Given a S/U list, show results to user. + * + * @param suList the S/U list + */ + public void showResultsToUser(ArrayList suList) { + double currentCap = currentPerson.getCurrentTotalMcxGrade() / (double)currentPerson.getCurrentMcAfterSU(); + int currentGradedMCs = currentPerson.getCurrentMcAfterSU(); + showInitialCapToUser(currentCap, currentGradedMCs); + ui.printStars(); + showCapAfterEachSu(suList, currentCap, currentPerson.getCurrentTotalMcxGrade(), currentGradedMCs); + } + + /** + * Display cap after each S/U. + * + * @param suList the S/U list + * @param currentCap the current cap + * @param totalMcxGrade the total MC multiply by the grade + * @param currentGradedMCs the current graded MCs + */ + public void showCapAfterEachSu(ArrayList suList, double currentCap, + double totalMcxGrade, int currentGradedMCs) { + double bestCap = currentCap; + int bestGradedMCs = currentGradedMCs; + int numberOfModulesToSU = 0; + + for (PartialModule module : suList) { + totalMcxGrade -= module.getCap() * module.getModuleCredit(); + currentGradedMCs -= module.getModuleCredit(); + System.out.println("S/U your module of " + module.getModuleCode() + " with grade " + module.getGrade() + + " will give you a CAP of: " + formatCapToString(totalMcxGrade / (double)currentGradedMCs)); + System.out.println("Your graded MCs after S/Uing this module is: " + currentGradedMCs); + ui.printNewLine(); + if (bestCap < (totalMcxGrade / (double)currentGradedMCs)) { + bestCap = totalMcxGrade / (double)currentGradedMCs; + bestGradedMCs = currentGradedMCs; + numberOfModulesToSU++; + } + } + showBestResultsForSu(bestCap, bestGradedMCs); + ui.printStars(); + showSuggestedSuOptions(suList, numberOfModulesToSU); + } + + /** + * Display the suggested S/U options. + * + * @param suList the S/U list + * @param numberOfModulesToSU the number of modules to S/U + */ + public void showSuggestedSuOptions(ArrayList suList, int numberOfModulesToSU) { + if (numberOfModulesToSU > 1) { + System.out.println(SU_SUGGESTION_PROMPT); + for (int i = 0; i < numberOfModulesToSU; i++) { + PartialModule moduleToSu = suList.get(i); + System.out.println(moduleToSu.getModuleCode() + " with grade " + moduleToSu.getGrade() + + " and modular credit of " + moduleToSu.getModuleCredit() + "."); + } + } else if (numberOfModulesToSU == 1) { + System.out.println(SINGLE_SU_SUGGESTION_PROMPT); + PartialModule moduleToSu = suList.get(0); + System.out.println(moduleToSu.getModuleCode() + " with grade " + moduleToSu.getGrade() + + " and modular credit of " + moduleToSu.getModuleCredit() + "."); + } else { + System.out.println(NO_SUGGESTION_PROMPT); + } + } + + /** + * Display best results after S/Uing. + * + * @param bestCap the best cap + * @param bestGradedMCs the best graded MCs + */ + public void showBestResultsForSu(double bestCap, int bestGradedMCs) { + System.out.println("Your highest CAP possible is: " + formatCapToString(bestCap) + + " with a graded MC of " + bestGradedMCs); + } + + /** + * Display initial cap to user. + * + * @param currentCap the current cap + * @param currentGradedMCs the current graded MCs + */ + public void showInitialCapToUser(double currentCap, int currentGradedMCs) { + System.out.println("Your CAP without S/U any module is: " + formatCapToString(currentCap)); + System.out.println("Your graded MCs without S/U any module is: " + currentGradedMCs); + } + + /** + * Display the S/U list to user. + * + * @param suList the S/U list + */ + public void showSuListToUser(ArrayList suList) { + System.out.println("Modules in your current S/U list: "); + for (PartialModule modules : suList) { + System.out.println(" " + modules.getModuleCode() + " " + modules.getGrade()); + } + } + + /** + * Main function to obtain the S/U list given some module codes. + * Returns the S/U list. + * + * @param numberOfModulesToSu number entered by user + * @return the S/U list + * @throws CapCalculatorException if the module is not valid + */ + public ArrayList getSuListByModule(int numberOfModulesToSu) throws CapCalculatorException { + ArrayList filteredList = (ArrayList) currentPerson.getModulesList().stream() + .filter(this::isValidSuModule) + .collect(toList()); + + ArrayList suList = new ArrayList<>(); + + for (int i = 0; i < numberOfModulesToSu; i++) { + promptUserForModuleCode(i + DISPLAY_PREFIX); + String moduleCode = in.nextLine().trim(); + PartialModule moduleToSu = getSuModule(filteredList,moduleCode); + addModuleToSuList(suList, moduleToSu); + } + suList.sort(Comparator.comparing(PartialModule::getCap)); + return suList; + } + + /** + * Add the module to be S/Ued into the list. + * + * @param suList the list of modules to be S/Ued + * @param moduleToSu the module to be added into the list + * @throws CapCalculatorException if the module is already in the list + */ + public void addModuleToSuList(ArrayList suList, + PartialModule moduleToSu) throws CapCalculatorException { + if (suList.contains(moduleToSu)) { + throw new CapCalculatorException(DUPLICATE_MODULE_ERROR); + } + suList.add(moduleToSu); + } + + /** + * Returns the module that the user want to S/U given the module code. + * + * @param filteredList the list of valid modules to S/U + * @param moduleCode the target module that user want to S/U + * @return the module to be S/Ued + * @throws CapCalculatorException if there is no valid module found + */ + public PartialModule getSuModule(ArrayList filteredList, + String moduleCode) throws CapCalculatorException { + for (PartialModule module : filteredList) { + if (module.getModuleCode().equalsIgnoreCase(moduleCode)) { + return module; + } + } + throw new CapCalculatorException(INVALID_MODULE_ERROR); + } + + /** + * Print prompt for user to enter the module code to S/U. + * + * @param displayIndex index to be displayed ot user + */ + private void promptUserForModuleCode(int displayIndex) { + System.out.println("What is your " + getAbbreviations(displayIndex) + "module?"); + } + + /** + * Returns true when the number of modules entered by user is more than zero, + * and less than the total modules taken by user, else return false. + * + * @param numberOfModulesToSu the number entered by user + * @return boolean + */ + private boolean isValidNumber(int numberOfModulesToSu) { + return (numberOfModulesToSu > 0 && numberOfModulesToSu <= currentPerson.getModulesList().size()); + } + + /** + * Returns true when the module is a valid modules to be S/Ued, + * else return false. + * + * @param partialModule the modules to be checked + * @return boolean + */ + private boolean isValidSuModule(PartialModule partialModule) { + return partialModule.getCap() >= 0; + } + + /** + * Returns true if the SU list is empty else false. + * + * @param suList the list of modules to be S/Ued + * @return boolean boolean + */ + private boolean isEmptyList(ArrayList suList) { + return suList.size() == 0; + } + + /** + * Function to return the abbreviation for the number. + * + * @param number number to return the abbreviation for + * @return string + */ + private String getAbbreviations(int number) { + if (number % 10 == 1 & number != 11) { + return number + "st "; + } else if (number % 10 == 2 & number != 12) { + return number + "nd "; + } else if (number % 10 == 3 & number != 13) { + return number + "rd "; + } else { + return number + "th "; + } + } + + //@@author jerroldlam + /** + * Returns true if semesterIndex is a valid semesterIndex, + * else returns false. + * + * @param semesterIndex semesterIndex to check + * @return false + */ + public static boolean isValidSemester(int semesterIndex) { + return (semesterIndex >= STARTING_SEMESTER_INDEX && semesterIndex <= FINAL_SEMESTER_INDEX); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/commons/SetTargetUtils.java b/src/main/java/seedu/duke/apps/capcalculator/commons/SetTargetUtils.java new file mode 100644 index 0000000000..104ba298ee --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/commons/SetTargetUtils.java @@ -0,0 +1,137 @@ +package seedu.duke.apps.capcalculator.commons; + +import seedu.duke.apps.capcalculator.exceptions.InvalidCapException; +import seedu.duke.apps.capcalculator.exceptions.InvalidCreditException; +import seedu.duke.global.objects.Person; + +import java.util.Scanner; + +import static seedu.duke.apps.capcalculator.commons.CalculatorUtils.round; +import static seedu.duke.apps.capcalculator.commons.CalculatorUtils.formatCapToString; +import static seedu.duke.apps.capcalculator.commons.CalculatorUtils.MAXIMUM_CAP; + +//@@author JuZihao +/** + * Class representing the common Set Target functions in CAP Calculator. + */ +public class SetTargetUtils { + private static final String MAXIMUM_CAP_ERROR = "Your target CAP cannot be greater than the maximum CAP of 5!"; + private static final String MINIMUM_CAP_ERROR = "Your target CAP cannot be lower than the minimum CAP of 0!"; + private static final String MINIMUM_MC_ERROR = "Your target MC should be greater than 0!"; + private static final String MAXIMUM_MC_ERROR = "Your target MC should not be greater than 180!"; + private static final String NOT_NUMBER_ERROR = "Looks like you did not enter an valid integer!"; + private static final int MINIMUM_MC = 0; + private static final int MAXIMUM_MC = 180; + + private Person currentPerson; + private Scanner in; + + public SetTargetUtils(Person currentPerson, Scanner in) { + this.currentPerson = currentPerson; + this.in = in; + } + + /** + * Returns the target Cap obtained from the user. + * + * @throws InvalidCapException if the Cap given is greater than 5.00 or less than 0 + */ + public double getTargetCap() throws InvalidCapException { + System.out.println("What is your target CAP?"); + try { + double targetCap = Double.parseDouble(in.nextLine()); + if (isValidCap(targetCap)) { + return round(targetCap,2); + } else if (targetCap > MAXIMUM_CAP) { + throw new InvalidCapException(MAXIMUM_CAP_ERROR); + } else { + throw new InvalidCapException(MINIMUM_CAP_ERROR); + } + } catch (NumberFormatException e) { + throw new InvalidCapException(NOT_NUMBER_ERROR); + } + } + + /** + * Returns the target MCs obtained from the user. + * + * @throws InvalidCreditException if the module credit given less than 0 + */ + public int getTargetGradedMC() throws InvalidCreditException { + System.out.println("How many graded MCs you are taking to achieve the target CAP?"); + try { + int targetGradedMC = Integer.parseInt(in.nextLine()); + if (isValidCredits(targetGradedMC)) { + return targetGradedMC; + } else if (targetGradedMC > MINIMUM_MC) { + throw new InvalidCreditException(MAXIMUM_MC_ERROR); + } else { + throw new InvalidCreditException(MINIMUM_MC_ERROR); + } + } catch (NumberFormatException e) { + throw new InvalidCreditException(NOT_NUMBER_ERROR); + } + } + + /** + * Checks if the target Cap given by the user is valid. + * Returns true when the Cap provided is less than 5.00 and more or equals to 0. + * Returns false otherwise. + * + * @param cap Cap to be checked + * @return boolean whether Cap is valid + */ + private boolean isValidCap(double cap) { + return cap <= MAXIMUM_CAP && cap >= 0; + } + + /** + * Checks if the target Cap given by the user is valid. + * Returns false when the MC provided is less than 0 else false. + * + * @param credits Module credits to be checked + * @return boolean whether MC is valid + */ + private boolean isValidCredits(int credits) { + return credits > MINIMUM_MC && credits <= MAXIMUM_MC; + } + + /** + * Calculate what should be the user's minimum CAP in order to achieve user's target CAP and display to user. + */ + public void showResultsToUser(double targetCap,int targetGradedMC) { + int totalMcToTarget = currentPerson.getCurrentMcAfterSU() + targetGradedMC; + double targetCapxTargetMC = (double) totalMcToTarget * targetCap; + double neededCap = (targetCapxTargetMC - currentPerson.getCurrentTotalMcxGrade()) / (double) targetGradedMC; + if (isValidCap(neededCap)) { + printTargetResultPossible(targetCap, targetGradedMC, neededCap); + } else { + printTargetResultImpossible(targetCap, targetGradedMC, neededCap); + } + } + + /** + * Prints out message for user when the target result cannot be achieved. + * + * @param targetCap user's targeted CAP. + * @param targetGradedMC user's targeted MC. + */ + private void printTargetResultImpossible(double targetCap, int targetGradedMC, double neededCap) { + System.out.println("OOPS!! Looks like in order to achieve your target CAP of " + targetCap + + " with you target MCs of " + targetGradedMC + "."); + System.out.println("You have to achieve a CAP of " + formatCapToString(neededCap) + + " for your next " + targetGradedMC + " MCs which is not possible!"); + } + + /** + * Prints out message for user when the target result can be achieved. + * + * @param targetCap user's targeted CAP. + * @param targetGradedMC user's targeted MC. + * @param neededCap user's future CAP needed to reach targeted CAP + */ + private void printTargetResultPossible(double targetCap, int targetGradedMC, double neededCap) { + System.out.println("You should achieve a minimum CAP of " + formatCapToString(neededCap) + " for your next " + + targetGradedMC + " MCs to achieve your target CAP of " + targetCap + "."); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/exceptions/CapCalculatorException.java b/src/main/java/seedu/duke/apps/capcalculator/exceptions/CapCalculatorException.java new file mode 100644 index 0000000000..247ed8261c --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/exceptions/CapCalculatorException.java @@ -0,0 +1,23 @@ +package seedu.duke.apps.capcalculator.exceptions; + +//@@author JuZihao +/** + * Signals that an invalid command has been given in the CAP Calculator App. + */ +public class CapCalculatorException extends Exception { + private String errorMessage; + + private static final String NEW_LINE = "\n"; + private static final String EXITING_CURRENT_COMMAND = + "Exiting current command back to CAP Calculator App Main Menu."; + + public CapCalculatorException(String errorMessage) { + String stringToPrint = errorMessage + NEW_LINE + EXITING_CURRENT_COMMAND; + this.errorMessage = stringToPrint; + } + + @Override + public String getMessage() { + return this.errorMessage; + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/exceptions/InvalidCapException.java b/src/main/java/seedu/duke/apps/capcalculator/exceptions/InvalidCapException.java new file mode 100644 index 0000000000..73e8225210 --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/exceptions/InvalidCapException.java @@ -0,0 +1,11 @@ +package seedu.duke.apps.capcalculator.exceptions; + +//@@author JuZihao +/** + * Signals that the given CAP is not valid. + */ +public class InvalidCapException extends CapCalculatorException { + public InvalidCapException(String errorMessage) { + super(errorMessage); + } +} diff --git a/src/main/java/seedu/duke/apps/capcalculator/exceptions/InvalidCreditException.java b/src/main/java/seedu/duke/apps/capcalculator/exceptions/InvalidCreditException.java new file mode 100644 index 0000000000..e912c45efe --- /dev/null +++ b/src/main/java/seedu/duke/apps/capcalculator/exceptions/InvalidCreditException.java @@ -0,0 +1,11 @@ +package seedu.duke.apps.capcalculator.exceptions; + +//@@author JuZihao +/** + * Signals that the given MC is not valid. + */ +public class InvalidCreditException extends CapCalculatorException { + public InvalidCreditException(String errorMessage) { + super(errorMessage); + } +} diff --git a/src/main/java/seedu/duke/apps/moduleloader/ModuleLoader.java b/src/main/java/seedu/duke/apps/moduleloader/ModuleLoader.java new file mode 100644 index 0000000000..842d35644b --- /dev/null +++ b/src/main/java/seedu/duke/apps/moduleloader/ModuleLoader.java @@ -0,0 +1,100 @@ +package seedu.duke.apps.moduleloader; + +import com.google.gson.Gson; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.LoggingTool; +import seedu.duke.global.objects.FullModule; +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.HashMap; +import java.util.Map; +import java.util.logging.FileHandler; +import java.util.logging.Level; +import java.util.logging.Logger; + +//@@author Khenus +/** + * Class representing function to load all modules offered by NUS. + */ +public class ModuleLoader { + private static final int TOTAL_NUMBER_OF_MODULES = 12436; + public static final String NEW_LINE = "\n"; + public static final String MISSING_MODULE_DATA = "Data for Modules not found!"; + public static final String TERMINATION = "Terminating program..."; + public static final String CORRUPTED_MODULE_DATA = "Data for Modules corrupted!"; + public static final String LOG_FILE_NAME = "logs/ModuleLoader.log"; + public static final String LOGGER_NAME = "ModuleLoader"; + + private Map moduleMap; + private FullModule[] moduleFullDetails; + private static Logger logger; + private static FileHandler fh; + + /** + * Default constructor for to load all modules from JSON file. + */ + public ModuleLoader() throws ModuleLoaderException { + try { + File file = new File("logs"); + file.mkdirs(); + fh = new FileHandler(LOG_FILE_NAME); + logger = new LoggingTool(LOGGER_NAME, fh).initialize(); + + moduleMap = new HashMap<>(); + Gson gson = new Gson(); + + InputStream in = ModuleLoader.class.getResourceAsStream("/ModuleData.json"); + Reader jsonReader = new InputStreamReader(in); + moduleFullDetails = gson.fromJson(jsonReader, FullModule[].class); + + for (int index = 0; index < moduleFullDetails.length; index++) { + moduleMap.put(moduleFullDetails[index].getModuleCode(), index); + } + + if (moduleFullDetails.length != TOTAL_NUMBER_OF_MODULES) { + throw new ModuleLoaderException(CORRUPTED_MODULE_DATA + NEW_LINE + TERMINATION); + } + + logger.log(Level.INFO, "All Module successfully loaded"); + fh.close(); + + } catch (NullPointerException e) { + logger.log(Level.WARNING, "Error while loading all modules: " + e.getMessage()); + fh.close(); + throw new ModuleLoaderException(MISSING_MODULE_DATA + NEW_LINE + TERMINATION); + } catch (IOException e) { + throw new ModuleLoaderException("Logger failed to initialize" + NEW_LINE + TERMINATION); + } + } + + /** + * Constructor for checking condition where loading all module from JSON file fails. + * Used in development only. + * + * @param isProperCreation boolean indicating non-proper creation of module initializer + */ + public ModuleLoader(boolean isProperCreation) throws ModuleLoaderException { + throw new ModuleLoaderException(CORRUPTED_MODULE_DATA + NEW_LINE + TERMINATION); + } + + /** + * Getter for module map. + * + * @return Map + */ + public Map getModuleMap() { + return this.moduleMap; + } + + /** + * Getter for full module details. + * + * @return An Array of FullModule + */ + public FullModule[] getModuleFullDetails() { + return this.moduleFullDetails; + } +} diff --git a/src/main/java/seedu/duke/apps/moduleloader/exceptions/ModuleLoaderException.java b/src/main/java/seedu/duke/apps/moduleloader/exceptions/ModuleLoaderException.java new file mode 100644 index 0000000000..f9a286653a --- /dev/null +++ b/src/main/java/seedu/duke/apps/moduleloader/exceptions/ModuleLoaderException.java @@ -0,0 +1,22 @@ +package seedu.duke.apps.moduleloader.exceptions; + +//@@author Khenus +/** + * Signals that an error has occured when loading modules. + */ +public class ModuleLoaderException extends Exception { + private String errorMessage; + + public ModuleLoaderException() { + //Code is intentionally left blank + } + + public ModuleLoaderException(String errorMessage) { + this.errorMessage = errorMessage; + } + + @Override + public String getMessage() { + return this.errorMessage; + } +} diff --git a/src/main/java/seedu/duke/global/App.java b/src/main/java/seedu/duke/global/App.java new file mode 100644 index 0000000000..7820191be5 --- /dev/null +++ b/src/main/java/seedu/duke/global/App.java @@ -0,0 +1,45 @@ +package seedu.duke.global; + +import static seedu.duke.parser.AppParser.MENU_PAGE; + +//@@author Khenus +/** + * Class representing an application in PlanNUS. + */ +public class App { + private boolean isExit = false; + private boolean isChangeApp = false; + private int currentApp = MENU_PAGE; + + public App() { + + } + + public App(boolean isExitCommand) { + this.isExit = isExitCommand; + } + + public void run() { + //Method is intentionally left blank + } + + public boolean getIsExit() { + return this.isExit; + } + + public boolean getIsChangeApp() { + return this.isChangeApp; + } + + public int getCurrentApp() { + return this.currentApp; + } + + public void setIsChangeApp(boolean isChangeApp) { + this.isChangeApp = isChangeApp; + } + + public void setCurrentApp(int newApp) { + this.currentApp = newApp; + } +} diff --git a/src/main/java/seedu/duke/global/Command.java b/src/main/java/seedu/duke/global/Command.java new file mode 100644 index 0000000000..e4af6051e5 --- /dev/null +++ b/src/main/java/seedu/duke/global/Command.java @@ -0,0 +1,47 @@ +package seedu.duke.global; + +import static seedu.duke.parser.AppParser.MENU_PAGE; + +//@@author Khenus +/** + * Class representing a command in PlanNUS. + */ +public class Command { + private boolean isExit; + private boolean isChangeApp; + private int newApp; + + public Command() { + this.isExit = false; + this.isChangeApp = false; + this.newApp = MENU_PAGE; + } + + public Command(boolean isExit) { + this.isExit = isExit; + this.isChangeApp = false; + this.newApp = MENU_PAGE; + } + + public Command(boolean isExit, boolean isChangeApp, int changeAppTo) { + this.isExit = isExit; + this.isChangeApp = isChangeApp; + this.newApp = changeAppTo; + } + + public void execute() throws Exception { + //Method is intentionally left blank + } + + public boolean getIsExit() { + return this.isExit; + } + + public boolean getIsChangeApp() { + return this.isChangeApp; + } + + public int getNewApp() { + return this.newApp; + } +} diff --git a/src/main/java/seedu/duke/global/LoggingTool.java b/src/main/java/seedu/duke/global/LoggingTool.java new file mode 100644 index 0000000000..9b8b0957d7 --- /dev/null +++ b/src/main/java/seedu/duke/global/LoggingTool.java @@ -0,0 +1,56 @@ +package seedu.duke.global; + +import java.io.IOException; +import java.util.logging.FileHandler; +import java.util.logging.Level; +import java.util.logging.Logger; +import java.util.logging.SimpleFormatter; + +//@@author jerroldlam +/** + * Class representing logging tool to log into text file without standard IO. + */ +public class LoggingTool { + Logger logger; + FileHandler fh; + + /** + * Default constructor for LoggingTool. + * + * @param loggerName name of logger + * @param fh FileHandler for Logger to log to + */ + public LoggingTool(String loggerName, FileHandler fh) { + logger = Logger.getLogger(loggerName); + this.fh = fh; + } + + /** + * Sets up logger to log at destination file and disables conventional IO logging. + * Note: Only logging of INFO and above is recorded. + * + * @return logger is configured + */ + public Logger initialize() { + formatHandlers(); + formatLogger(); + return logger; + } + + /** + * Formats handlers to log to file and not console with Level.INFO and higher. + */ + private void formatHandlers() { + logger.addHandler(fh); + logger.setUseParentHandlers(false); + logger.setLevel(Level.INFO); + } + + /** + * Sets format for logger. + */ + private void formatLogger() { + SimpleFormatter formatter = new SimpleFormatter(); + fh.setFormatter(formatter); + } +} diff --git a/src/main/java/seedu/duke/global/exceptions/AppParserException.java b/src/main/java/seedu/duke/global/exceptions/AppParserException.java new file mode 100644 index 0000000000..be40f8306a --- /dev/null +++ b/src/main/java/seedu/duke/global/exceptions/AppParserException.java @@ -0,0 +1,18 @@ +package seedu.duke.global.exceptions; + +//@@author Khenus +/** + * Signals that an invalid command has been given in the App parser. + */ +public class AppParserException extends Exception { + String errorMessage; + + public AppParserException(String errorMessage) { + this.errorMessage = errorMessage; + } + + @Override + public String getMessage() { + return this.errorMessage; + } +} diff --git a/src/main/java/seedu/duke/global/exceptions/CommandParserException.java b/src/main/java/seedu/duke/global/exceptions/CommandParserException.java new file mode 100644 index 0000000000..44725eaa96 --- /dev/null +++ b/src/main/java/seedu/duke/global/exceptions/CommandParserException.java @@ -0,0 +1,18 @@ +package seedu.duke.global.exceptions; + +//@@author Khenus +/** + * Signals that an invalid command has been given in the main command parser. + */ +public class CommandParserException extends Exception { + String errorMessage; + + public CommandParserException(String errorMessage) { + this.errorMessage = errorMessage; + } + + @Override + public String getMessage() { + return this.errorMessage; + } +} diff --git a/src/main/java/seedu/duke/global/objects/FullModule.java b/src/main/java/seedu/duke/global/objects/FullModule.java new file mode 100644 index 0000000000..201b7f4d41 --- /dev/null +++ b/src/main/java/seedu/duke/global/objects/FullModule.java @@ -0,0 +1,111 @@ +package seedu.duke.global.objects; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.apache.commons.lang3.builder.EqualsBuilder; +import org.apache.commons.lang3.builder.ToStringBuilder; + +import static org.apache.commons.lang3.builder.ToStringStyle.JSON_STYLE; + +// "moduleCode", +// "title", +// "moduleCredit", +// "department", +// "faculty", +// "semester" +// "preclusion", +// "attibutes" = [ +// su: false, Index 0 of attribute +// sfs: false, Index 1 of attribute +// ssgf: false, Index 2 of attribute +// ism: false, Index 3 of attribute +// fyp: false, Index 4 of attribute +// year: false, Index 5 of attribute +// grsu: false, Index 6 of attribute +// lab: false, Index 7 of attribute +// urop: false, Index 8 of attribute +// ], +// "prerequisite", +// "corequisite" + +//@@author Khenus +/** + * A class created to store the full data of each mod after JSON conversion. + */ +public class FullModule { + private String moduleCode; + private String title; + private Integer moduleCredit; + private String department; + private String faculty; + private List semester = new ArrayList(); + private String preclusion; + private List attributes = new ArrayList(); + private String prerequisite; + private String corequisite; + private Map additionalProperties = new HashMap(); + + public String getModuleCode() { + return moduleCode; + } + + public String getTitle() { + return title; + } + + public Integer getModuleCredit() { + return moduleCredit; + } + + public String getDepartment() { + return department; + } + + public String getFaculty() { + return faculty; + } + + public List getSemester() { + return semester; + } + + public String getPreclusion() { + return preclusion; + } + + public List getAttributes() { + return attributes; + } + + public String getPrerequisite() { + return prerequisite; + } + + public String getCorequisite() { + return corequisite; + } + + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this, JSON_STYLE); + } + + @Override + public boolean equals(Object other) { + if (other == this) { + return true; + } + if ((other instanceof FullModule) == false) { + return false; + } + FullModule rhs = ((FullModule) other); + return new EqualsBuilder().append(moduleCode, rhs.moduleCode).append(title, rhs.title) + .append(moduleCredit, rhs.moduleCredit).append(department, rhs.department) + .append(faculty, rhs.faculty).append(semester, rhs.semester).append(preclusion, rhs.preclusion) + .append(attributes, rhs.attributes).append(prerequisite, rhs.prerequisite) + .append(corequisite, rhs.corequisite).append(additionalProperties, rhs.additionalProperties).isEquals(); + } +} diff --git a/src/main/java/seedu/duke/global/objects/PartialModule.java b/src/main/java/seedu/duke/global/objects/PartialModule.java new file mode 100644 index 0000000000..fb01ed99ed --- /dev/null +++ b/src/main/java/seedu/duke/global/objects/PartialModule.java @@ -0,0 +1,143 @@ +package seedu.duke.global.objects; + +import org.apache.commons.lang3.builder.ToStringBuilder; + +//@@author jerroldlam +/** + * Class representing module object to be stored in the Person object. + * It is a truncated version of FullModule with only relevant fields. + */ +public class PartialModule implements Comparable { + private String moduleCode; + private int semesterIndex; + private String grade; + private int moduleCredit; + private double cap; + + public PartialModule(String moduleCode, int semesterIndex, String grade, int moduleCredit) { + setModuleCode(moduleCode); + setSemesterIndex(semesterIndex); + setGrade(grade); + setModuleCredit(moduleCredit); + setCap(grade); + } + + public String getModuleCode() { + return moduleCode; + } + + public Integer getModuleCredit() { + return moduleCredit; + } + + public String getGrade() { + return grade; + } + + public int getSemesterIndex() { + return semesterIndex; + } + + public void setModuleCredit(int moduleCredit) { + this.moduleCredit = moduleCredit; + } + + public void setModuleCode(String moduleCode) { + this.moduleCode = moduleCode; + } + + public void setSemesterIndex(int semesterIndex) { + this.semesterIndex = semesterIndex; + } + + public void setGrade(String grade) { + this.grade = grade; + setCap(grade); + } + + //@@author JuZihao + /** + * Returns Academic points associated with letter grades. + * If grade is a S or U grading options, returns -1.00 and -2.00 respectively. + * If grade is a special grading option, returns -3.00. + * + * @param grade user grade to check + */ + public void setCap(String grade) { + switch (grade.toUpperCase()) { + case "A+": + case "A": + this.cap = 5.00; + break; + case "A-": + this.cap = 4.50; + break; + case "B+": + this.cap = 4.00; + break; + case "B": + this.cap = 3.50; + break; + case "B-": + this.cap = 3.00; + break; + case "C+": + this.cap = 2.50; + break; + case "C": + this.cap = 2.00; + break; + case "D+": + this.cap = 1.50; + break; + case "D": + this.cap = 1.00; + break; + case "F": + this.cap = 0.00; + break; + case "CS": //Completed Satisfactorily + //Fallthrough + case "S": //Satisfactory + this.cap = -1.00; + break; + case "CU": //Completed Unsatisfactorily + //Fallthrough + case "U": //Unsatisfactory + this.cap = -2.00; + break; + case "IP": //In progress + //Fallthrough + case "W": //Withdrawn + //Fallthrough + case "IC": //Incomplete + //Fallthrough + case "AUD": //Audit + //Fallthrough + case "WU": //Withdrawn from University + //Fallthrough + case "EXE": //Exempted + //Fallthrough + case "NT": //Not taken + this.cap = -3.00; + break; + default: + this.cap = 0.00; + break; + } + } + + public double getCap() { + return cap; + } + + @Override + public int compareTo(PartialModule module) { + return (Double.compare(this.getCap(), module.getCap())); + } + + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this); + } +} diff --git a/src/main/java/seedu/duke/global/objects/Person.java b/src/main/java/seedu/duke/global/objects/Person.java new file mode 100644 index 0000000000..6e94c6548c --- /dev/null +++ b/src/main/java/seedu/duke/global/objects/Person.java @@ -0,0 +1,67 @@ +package seedu.duke.global.objects; + +import java.util.ArrayList; +import java.util.HashMap; + +//@@author jerroldlam +/** + * Class representing the user for PlanNUS. + */ +public class Person { + + private String personName; + private double currentTotalMcxGrade; + private int currentMc; + private int currentMcAfterSU; + private ArrayList modulesList; + private HashMap> modulesAddedMap; + + public Person(String personName) { + this.currentTotalMcxGrade = 0.0; + this.currentMc = 0; + this.currentMcAfterSU = 0; + this.personName = personName; + this.modulesList = new ArrayList<>(); + this.modulesAddedMap = new HashMap<>(); + } + + public String getPersonName() { + return personName; + } + + public double getCurrentTotalMcxGrade() { + return currentTotalMcxGrade; + } + + public void setCurrentTotalMcxGrade(double currentTotalMcxGrade) { + this.currentTotalMcxGrade = currentTotalMcxGrade; + } + + public int getCurrentMc() { + return currentMc; + } + + public void setCurrentMc(int currentMc) { + this.currentMc = currentMc; + } + + public int getCurrentMcAfterSU() { + return currentMcAfterSU; + } + + public void setCurrentMcAfterSU(int currentMcAfterSU) { + this.currentMcAfterSU = currentMcAfterSU; + } + + public ArrayList getModulesList() { + return modulesList; + } + + public HashMap> getModulesAddedMap() { + return modulesAddedMap; + } + + public void setModulesAddedMap(HashMap> modulesAddedMap) { + this.modulesAddedMap = modulesAddedMap; + } +} diff --git a/src/main/java/seedu/duke/parser/AppParser.java b/src/main/java/seedu/duke/parser/AppParser.java new file mode 100644 index 0000000000..414fc5e3fd --- /dev/null +++ b/src/main/java/seedu/duke/parser/AppParser.java @@ -0,0 +1,77 @@ +package seedu.duke.parser; + +import seedu.duke.apps.academicplanner.AcademicPlannerApp; +import seedu.duke.apps.capcalculator.CapCalculatorApp; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.App; +import seedu.duke.global.exceptions.AppParserException; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +//@@author Khenus +/** + * Class representing the parser for applications used in the main PlanNUS page. + */ +public class AppParser { + public static final int MENU_PAGE = 0; + public static final int ACADEMIC_PLANNER = 1; + public static final int CAP_CALCULATOR = 2; + + private static final String ACADEMIC_PLAN_COMMAND = "ACADPLAN"; + private static final String CAP_CALCULATOR_COMMAND = "CAPCALC"; + private static final String EXIT_COMMAND = "EXIT"; + private static final String ACADEMIC_PLAN_SHORT_COMMAND = "A"; + private static final String CAP_CALCULATOR_SHORT_COMMAND = "C"; + private static final String EXIT_SHORT_COMMAND = "E"; + private static final String INVALID_COMMAND_MESSAGE = "OOPS!!! I'm sorry, but I don't know what that means :-("; + + /** + * Processes user input command and returns app to be run. + * + * @param userInput user input + * @param allModules variable containing all modules offered by NUS + * @param currentPerson user of PlanNUS + * @param ui Ui + * @return app to be run + * @throws AppParserException thrown when an invalid command is give + */ + public static App parse(String userInput, ModuleLoader allModules, Person currentPerson, Ui ui, Storage storage) + throws AppParserException { + userInput = userInput.trim().toUpperCase(); + + if (userInput.equals(ACADEMIC_PLAN_COMMAND) || userInput.equals(ACADEMIC_PLAN_SHORT_COMMAND)) { + return new AcademicPlannerApp(allModules, currentPerson, ui, storage); + } else if (userInput.equals(CAP_CALCULATOR_COMMAND) || userInput.equals(CAP_CALCULATOR_SHORT_COMMAND)) { + return new CapCalculatorApp(currentPerson, ui); + } else if (userInput.equals(EXIT_COMMAND) || userInput.equals(EXIT_SHORT_COMMAND)) { + return new App(true); + } else { + throw new AppParserException(INVALID_COMMAND_MESSAGE); + } + } + + /** + * Processes toggle command and returns app to be run. + * + * @param newApp Index of app to be toggled to + * @param allModules variable containing all modules offered by NUS + * @param currentPerson user of PlanNUS + * @param ui Ui + * @return app to be run + * @throws AppParserException thrown when an invalid command is give + */ + public static App specialParse(int newApp, ModuleLoader allModules, Person currentPerson, Ui ui, Storage storage) + throws AppParserException { + + if (newApp == ACADEMIC_PLANNER) { + return new AcademicPlannerApp(allModules, currentPerson, ui, storage); + } else if (newApp == CAP_CALCULATOR) { + return new CapCalculatorApp(currentPerson, ui); + } else if (newApp == MENU_PAGE) { + return new App(true); + } else { + throw new AppParserException(INVALID_COMMAND_MESSAGE); + } + } +} 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..82a4c2ede2 --- /dev/null +++ b/src/main/java/seedu/duke/storage/Storage.java @@ -0,0 +1,38 @@ +package seedu.duke.storage; + +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.commons.LoadUtils; +import seedu.duke.storage.commons.SaveUtils; +import seedu.duke.storage.exceptions.LoadFileException; +import seedu.duke.storage.exceptions.SaveFileException; + +//@@author harryleecp +public class Storage { + private static final String FILE_NAME = "PlanNUS.txt"; + private ModuleLoader allModules; + + public Storage(ModuleLoader allModules) { + this.allModules = allModules; + } + + public void loader(Person currentPerson) { + LoadUtils loadHandler = new LoadUtils(currentPerson, FILE_NAME, allModules); + + try { + loadHandler.load(); + } catch (LoadFileException e) { + System.out.println(e.getMessage()); + } + } + + public void saver(Person currentPerson) { + SaveUtils saveHandler = new SaveUtils(currentPerson, FILE_NAME); + + try { + saveHandler.save(); + } catch (SaveFileException e) { + System.out.println(e.getMessage()); + } + } +} diff --git a/src/main/java/seedu/duke/storage/commons/FieldValidator.java b/src/main/java/seedu/duke/storage/commons/FieldValidator.java new file mode 100644 index 0000000000..f8bf08eb86 --- /dev/null +++ b/src/main/java/seedu/duke/storage/commons/FieldValidator.java @@ -0,0 +1,139 @@ +package seedu.duke.storage.commons; + +import static java.lang.Integer.parseInt; +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getLargestCapForModule; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.exceptions.CorruptedSaveFileException; + +//@@author Khenus +public class FieldValidator { + private static final int SEMESTER_VALUE_POSITION = 0; + private static final int MODULE_CODE_POSITION = 1; + private static final int MODULE_GRADE_POSITION = 2; + private static final int MODULE_CREDIT_POSITION = 3; + + private static final int MODULE_LOADED = 0; + private static final int MODULE_LOADING_FAILED = 1; + private static final int INVALID_SEMESTER = 2; + private static final int INVALID_MODULE_CODE = 3; + private static final int INVALID_GRADE = 4; + private static final int INVALID_MC = 5; + + private ModuleValidator moduleValidator; + private boolean isAllFieldValid; + private int[] details; + private String[] lineItems; + private Person currentPerson; + + /** + * Default constructor for Field Validator. + * + * @param details An Array of int storing all the details of loading save file until current entry + * @param lineItems Different fields of current entry from save file + * @param moduleValidator Module validator to check validity of modules from save file + */ + + public FieldValidator(int[] details, String[] lineItems, ModuleValidator moduleValidator, Person currentPerson) { + this.details = details; + this.lineItems = lineItems; + this.isAllFieldValid = true; + this.moduleValidator = moduleValidator; + this.currentPerson = currentPerson; + } + + /** + * Validating all input fields from save file. Note that validator will terminate once + * an entry fails one check, with priority: + * Semester > Module code > Grade > Module Credit + * + * @return A boolean for whether current entry is valid + */ + public boolean validate() { + try { + int currentSem = parseInt(lineItems[SEMESTER_VALUE_POSITION]); + + if (currentSem > 10 || currentSem < 1) { + isAllFieldValid = false; + details[INVALID_SEMESTER]++; + } + } catch (NumberFormatException e) { + isAllFieldValid = false; + details[INVALID_SEMESTER]++; + } + + if (isAllFieldValid && !moduleValidator.isModOfferedByNus(lineItems[MODULE_CODE_POSITION])) { + isAllFieldValid = false; + details[INVALID_MODULE_CODE]++; + } + + if (isAllFieldValid && !moduleValidator.isValidGrade(lineItems[MODULE_GRADE_POSITION])) { + isAllFieldValid = false; + details[INVALID_GRADE]++; + } + + if (isAllFieldValid) { + try { + int currentModuleCredit = parseInt(lineItems[MODULE_CREDIT_POSITION]); + Integer actualModuleCredit + = moduleValidator.getModuleCreditFromDatabase(lineItems[MODULE_CODE_POSITION]); + + if (currentModuleCredit != actualModuleCredit) { + isAllFieldValid = false; + details[INVALID_MC]++; + } + } catch (NumberFormatException e) { + isAllFieldValid = false; + details[INVALID_MC]++; + } + } + + if (isAllFieldValid) { + PartialModule moduleWithLargestCap + = getLargestCapForModule(currentPerson, lineItems[MODULE_CODE_POSITION]); + PartialModule testModule = new PartialModule(lineItems[MODULE_CODE_POSITION], + parseInt(lineItems[SEMESTER_VALUE_POSITION]), lineItems[MODULE_GRADE_POSITION], + parseInt(lineItems[MODULE_CREDIT_POSITION])); + + if (moduleWithLargestCap != null) { + ModuleValidator validator = new ModuleValidator(); + + if (!validator.isRetakeGrade(moduleWithLargestCap.getGrade()) + && moduleWithLargestCap.getCap() >= testModule.getCap()) { + isAllFieldValid = false; + details[INVALID_GRADE]++; + } + } + } + + if (isAllFieldValid) { + details[MODULE_LOADED]++; + } else { + details[MODULE_LOADING_FAILED]++; + } + + return isAllFieldValid; + } + + /** + * Print full loading details after loading finishes. + * + * @param isAllEntryValid boolean stating whether all entries in save file is valid + * @param modulesLoaded number of modules loaded successfully + * @throws CorruptedSaveFileException throws an exception if save file is corrupted + */ + public static void printLoadDetails(boolean isAllEntryValid, int modulesLoaded) throws CorruptedSaveFileException { + if (isAllEntryValid) { + if (modulesLoaded == 0) { + System.out.println("Save file is empty. No module loaded."); + } else if (modulesLoaded == 1) { + System.out.println(modulesLoaded + " module loaded."); + } else { + System.out.println(modulesLoaded + " modules loaded."); + } + } else { + throw new CorruptedSaveFileException(); + } + } +} diff --git a/src/main/java/seedu/duke/storage/commons/LoadUtils.java b/src/main/java/seedu/duke/storage/commons/LoadUtils.java new file mode 100644 index 0000000000..59ce1219de --- /dev/null +++ b/src/main/java/seedu/duke/storage/commons/LoadUtils.java @@ -0,0 +1,111 @@ +package seedu.duke.storage.commons; + +import seedu.duke.apps.academicplanner.commons.AddUtils; +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.exceptions.CorruptedSaveFileException; +import seedu.duke.storage.exceptions.LoadFileException; + +import java.io.File; +import java.io.FileNotFoundException; +import java.util.Scanner; + +import static java.lang.Integer.parseInt; +import static seedu.duke.storage.commons.FieldValidator.printLoadDetails; + +//@@author harryleecp +public class LoadUtils { + private static final String NEW_LINE = "\n"; + private static final String TAB = " "; + + private static final int SEMESTER_VALUE_POSITION = 0; + private static final int MODULE_CODE_POSITION = 1; + private static final int MODULE_GRADE_POSITION = 2; + private static final int MODULE_CREDIT_POSITION = 3; + + private static final int MODULE_LOADED = 0; + private static final int MODULE_LOADING_FAILED = 1; + private static final int INVALID_SEMESTER = 2; + private static final int INVALID_MODULE_CODE = 3; + private static final int INVALID_GRADE = 4; + private static final int INVALID_MC = 5; + + private static final int FROM_LOAD = 1; + + private ModuleLoader allModules; + private AddUtils addUtils; + private ModuleValidator moduleValidator; + private Person currentPerson; + private String fileName; + + /** + * Default constructor for handling loading. + * + * @param currentPerson a Person object storing information for current person + * @param fileName a String for name of save file + * @param allModules A ModuleLoader containing all loaded modules + */ + public LoadUtils(Person currentPerson, String fileName, ModuleLoader allModules) { + this.currentPerson = currentPerson; + this.fileName = fileName; + this.allModules = allModules; + this.moduleValidator = new ModuleValidator(allModules, currentPerson); + } + + /** + * Function to load save file. + * + * @throws LoadFileException Exception when the save file is corrupted or missing + */ + public void load() throws LoadFileException { + int[] details = new int[6]; + boolean isAllEntryValid = true; + Scanner in; + + try { + File f = new File(fileName); + in = new Scanner(f); + addUtils = new AddUtils(allModules, currentPerson); + + while (in.hasNextLine()) { + String line = in.nextLine(); + String[] lineItems = line.split("\\|"); + + for (int i = 0; i < lineItems.length; i++) { + lineItems[i] = lineItems[i].trim().toUpperCase(); + } + + boolean isEntryValid + = new FieldValidator(details, lineItems, moduleValidator, currentPerson).validate(); + + if (!isEntryValid) { + isAllEntryValid = false; + } + + if (isEntryValid) { + int currentSem = parseInt(lineItems[SEMESTER_VALUE_POSITION]); + String currentModuleCode = lineItems[MODULE_CODE_POSITION]; + String currentModuleGrade = lineItems[MODULE_GRADE_POSITION]; + int currentModuleCredit = parseInt(lineItems[MODULE_CREDIT_POSITION]); + addUtils.addModuleToUser(currentModuleCode, currentSem, + currentModuleGrade, currentModuleCredit, FROM_LOAD); + } + } + in.close(); + printLoadDetails(isAllEntryValid, details[MODULE_LOADED]); + } catch (FileNotFoundException e) { + throw new LoadFileException("Save file not found!\nIt will be automatically created."); + } catch (CorruptedSaveFileException e) { + throw new LoadFileException("Save file corrupted! " + + "Details:" + NEW_LINE + + TAB + "Module loaded: " + details[MODULE_LOADED] + NEW_LINE + + TAB + "Module failed loading: " + details[MODULE_LOADING_FAILED] + NEW_LINE + + TAB + TAB + "- Invalid Semester: " + details[INVALID_SEMESTER] + NEW_LINE + + TAB + TAB + "- Invalid Module Code: " + details[INVALID_MODULE_CODE] + NEW_LINE + + TAB + TAB + "- Invalid Grade: " + details[INVALID_GRADE] + NEW_LINE + + TAB + TAB + "- Invalid Module Credit: " + details[INVALID_MC] + NEW_LINE + + NEW_LINE); + } + } +} diff --git a/src/main/java/seedu/duke/storage/commons/SaveUtils.java b/src/main/java/seedu/duke/storage/commons/SaveUtils.java new file mode 100644 index 0000000000..2e9f023abb --- /dev/null +++ b/src/main/java/seedu/duke/storage/commons/SaveUtils.java @@ -0,0 +1,59 @@ +package seedu.duke.storage.commons; + +import java.io.FileWriter; +import java.util.ArrayList; +import java.util.Comparator; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.updateHashmap; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.exceptions.SaveFileException; + +//@@author harryleecp +public class SaveUtils { + private static final String NEWLINE = "\n"; + private static final String SEPARATOR = "|"; + + private Person currentPerson; + private String fileName; + + /** + * Default constructor for handling save. + * + * @param currentPerson a Person object storing information for current person + * @param fileName a String for name of save file + */ + public SaveUtils(Person currentPerson, String fileName) { + this.currentPerson = currentPerson; + this.fileName = fileName; + } + + /** + * Function to save person object into save file. + * + * @throws SaveFileException Exception thrown if there is an error accessing save file + */ + public void save() throws SaveFileException { + try { + ArrayList sortedBySem = currentPerson.getModulesList(); + sortedBySem.sort(Comparator.comparing(PartialModule::getSemesterIndex)); + + updateHashmap(currentPerson.getModulesList(), currentPerson); + + String textToSave = ""; + + for (PartialModule item : sortedBySem) { + textToSave += item.getSemesterIndex() + SEPARATOR + + item.getModuleCode() + SEPARATOR + + item.getGrade() + SEPARATOR + + item.getModuleCredit() + NEWLINE; + } + + FileWriter fw = new FileWriter(fileName); + fw.write(textToSave); + fw.close(); + System.out.println("Data successfully saved!"); + } catch (Exception e) { + throw new SaveFileException("Error accessing save file!"); + } + } +} diff --git a/src/main/java/seedu/duke/storage/exceptions/CorruptedSaveFileException.java b/src/main/java/seedu/duke/storage/exceptions/CorruptedSaveFileException.java new file mode 100644 index 0000000000..452be2c0f9 --- /dev/null +++ b/src/main/java/seedu/duke/storage/exceptions/CorruptedSaveFileException.java @@ -0,0 +1,8 @@ +package seedu.duke.storage.exceptions; + +//@@author Khenus +public class CorruptedSaveFileException extends Exception { + public CorruptedSaveFileException() { + + } +} diff --git a/src/main/java/seedu/duke/storage/exceptions/LoadFileException.java b/src/main/java/seedu/duke/storage/exceptions/LoadFileException.java new file mode 100644 index 0000000000..d6bfb7479f --- /dev/null +++ b/src/main/java/seedu/duke/storage/exceptions/LoadFileException.java @@ -0,0 +1,15 @@ +package seedu.duke.storage.exceptions; + +//@@author harryleecp +public class LoadFileException extends Exception { + private String errorMessage; + + public LoadFileException(String errorMessage) { + this.errorMessage = errorMessage; + } + + @Override + public String getMessage() { + return errorMessage; + } +} diff --git a/src/main/java/seedu/duke/storage/exceptions/SaveFileException.java b/src/main/java/seedu/duke/storage/exceptions/SaveFileException.java new file mode 100644 index 0000000000..403cac7d72 --- /dev/null +++ b/src/main/java/seedu/duke/storage/exceptions/SaveFileException.java @@ -0,0 +1,15 @@ +package seedu.duke.storage.exceptions; + +//@@author harryleecp +public class SaveFileException extends Exception { + private String errorMessage; + + public SaveFileException(String errorMessage) { + this.errorMessage = errorMessage; + } + + @Override + public String getMessage() { + return errorMessage; + } +} diff --git a/src/main/java/seedu/duke/ui/Ui.java b/src/main/java/seedu/duke/ui/Ui.java new file mode 100644 index 0000000000..47526af6dc --- /dev/null +++ b/src/main/java/seedu/duke/ui/Ui.java @@ -0,0 +1,113 @@ +package seedu.duke.ui; + +import java.util.Scanner; + +//@@author Khenus +/** + * Class representing the ui for PlanNUS. + */ +public class Ui { + private static final String LINE = "____________________________________________________________"; + private static final String STARS = "************************************************************"; + private static final String NEW_LINE = "\n"; + private static final String LOGO = " &&&&&&&&&&&&&&&&&&&&&&&&&\n" + + " &&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n" + + " &&&&& &&&&&\n" + + " &&&&& &&&&&&\n" + + " &&&&& &&&&&& &&&&&\n" + + " &&&&&& &&&&&&&&&&&&&& &&&&&&\n" + + " &&&&& &&&&& &&&& &&&&&\n" + + " &&&&&& &&&& &&& &&&&&\n" + + " &&&&& &&&& &&& &&&&&\n" + + " &&&&& &&&&&&&&&&&&&&& &&&&&\n" + + " &&&&& &&&& &&&&&&& &&&&&\n" + + " &&&&& &&&& &&&&&&\n" + + " &&&&& &&&& &&&&&\n" + + " &&&&& &&&& &&&&&&\n" + + " &&&&& &&&&&\n" + + " &&&&& &&&&&\n" + + " &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n" + + " &&&&&&&&&&&&&&&&&&&&&&&&&&&"; + private static final String WELCOME_MESSAGE = "Welcome to PlanNUS!"; + private static final String WELCOME_BACK_MESSAGE = "Welcome back to PlanNUS Main Menu!"; + private static final String AWAIT_COMMAND = "Type in a command to continue..."; + private static final String ACADEMIC_AWAIT_COMMAND = "Type in an Academic Planner command to continue..."; + private static final String CALCULATOR_AWAIT_COMMAND = "Type in an CAP Calculator command to continue..."; + private static final String EXIT_MESSAGE = "Thanks for using PlanNUS! We hope to see you again!"; + private static final String HELP_MESSAGE = "\tFor academic planner, type 'acadplan' or 'a'\n" + + "\tFor CAP calculator, type 'capcalc' or 'c'\n" + + "\tTo exit PlanNUS, type 'exit' or 'e'"; + + private Scanner scanner; + + public Ui() { + this.scanner = new Scanner(System.in); + } + + public Scanner getScanner() { + return this.scanner; + } + + public void closeScanner() { + this.scanner.close(); + } + + public void printLine() { + System.out.println(LINE); + } + + public void printNewLine() { + System.out.println(NEW_LINE); + } + + public void printStars() { + System.out.println(NEW_LINE + STARS + NEW_LINE); + } + + /** + * Prints exit message for user just before termination of program. + */ + public void showExitMessage() { + System.out.println(LINE + NEW_LINE + + EXIT_MESSAGE + NEW_LINE + + LINE + NEW_LINE); + } + + /** + * Prints welcome back message for user when user returns back to main menu. + */ + public void showWelcomeBackMessage() { + System.out.println(WELCOME_BACK_MESSAGE); + System.out.println(HELP_MESSAGE); + } + + /** + * Prints welcome message for user upon first entry into PlanNUS. + */ + public void showWelcomeMessage() { + System.out.println(NEW_LINE + LOGO + NEW_LINE + NEW_LINE + WELCOME_MESSAGE); + System.out.println(HELP_MESSAGE); + } + + /** + * Prints general await command. + */ + public void showAwaitCommand() { + System.out.println(NEW_LINE + AWAIT_COMMAND); + } + + /** + * Prints await command for academic calendar. + */ + public void showAcademicAwaitCommand() { + System.out.println(NEW_LINE + ACADEMIC_AWAIT_COMMAND); + } + + /** + * Prints await command for CAP calculator. + */ + public void showCalculatorAwaitCommand() { + System.out.println(NEW_LINE + CALCULATOR_AWAIT_COMMAND); + } + +} diff --git a/src/main/resources/ModuleData.json b/src/main/resources/ModuleData.json new file mode 100644 index 0000000000..b08ec6c975 --- /dev/null +++ b/src/main/resources/ModuleData.json @@ -0,0 +1,286890 @@ +[ + { + "moduleCode": "AA1201", + "title": "Asian Challenges and Interconnections", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5001", + "title": "Architectural History of Singapore", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5002", + "title": "Conservation Approaches and Philosophies", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5003", + "title": "Urban Conservation and Regeneration", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5004", + "title": "Architectural Heritage Management", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5005", + "title": "Conservation Policy Methodology for Sustainable Development", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5006", + "title": "Disaster Risk Management of Cultural Heritage", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5007", + "title": "Dissertation", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5008", + "title": "Design for Conservation", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5009", + "title": "Design for Adaptive Reuse", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5010", + "title": "Historic Buildings Survey and Recording", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5011", + "title": "Conservation of C20th Buildings", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5012", + "title": "Practical Building Conservation Skills I", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5013", + "title": "Practical Building Conservation Skills II", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AC5014", + "title": "Internship", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ACC1002", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA1002 are not allowed to take ACC1002.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ACC1002X", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed CS1304 or EC3212 or BK1003 or BZ1002 or BH1002 or BZ1002E or BH1002E or FNA1002E or FNA1002X are not allowed to take ACC1002X.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ACC1006", + "title": "Accounting Information Systems", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "Students who have passed FNA1006 are not allowed to take ACC1006.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002 or ACC1002", + "corequisite": "" + }, + { + "moduleCode": "ACC1701", + "title": "Accounting for Decision Makers", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC1002; ACC1002X; EC2204", + "attributes": [ + true, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ACC1701X", + "title": "Accounting for Decision Makers", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC1002; ACC1002X", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ACC2002", + "title": "Managerial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH2002 or BZ3102 or BK2001 or FNA2002 or IE4242", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed BK1003 or BZ1002 or BH1002 or FNA1002 or FNA1002X or FNA1002E or ACC1002 or ACC1002X or BH1002E or CS1304 or EC3212 or EG1422 before they are allowed to take ACC2002.", + "corequisite": "" + }, + { + "moduleCode": "ACC2706", + "title": "Managerial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC2002", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1701/ACC1701X or EC2204", + "corequisite": "" + }, + { + "moduleCode": "ACC2707", + "title": "Corporate Accounting & Reporting I", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3601", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1701/ACC1701X or EC2204.\n(or AC1002 or ACC1002X)", + "corequisite": "" + }, + { + "moduleCode": "ACC2708", + "title": "Corporate Accounting & Reporting II", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3601", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC2707", + "corequisite": "" + }, + { + "moduleCode": "ACC2709", + "title": "Accounting Information Systems", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC1006", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1701/ACC1701X or EC2204", + "corequisite": "" + }, + { + "moduleCode": "ACC3601", + "title": "Corporate Accounting and Reporting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3111 or BZ3101 or BK3106 or FNA3111", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002 or ACC1002", + "corequisite": "" + }, + { + "moduleCode": "ACC3602", + "title": "Managerial Planning and Control", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3112 are not allowed to take ACC3602.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2002 or ACC2002", + "corequisite": "" + }, + { + "moduleCode": "ACC3603", + "title": "Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA3121 are not allowed to take ACC3603.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002/ACC1002 and FNA2002 (Students who are not enrolled in the accounting or accounting-specialization program should seek Deans Office permission to read the module)", + "corequisite": "" + }, + { + "moduleCode": "ACC3604", + "title": "Corporate and Securities Law", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA3122 or LL4055 are not allowed to take ACC3604.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1004", + "corequisite": "" + }, + { + "moduleCode": "ACC3605", + "title": "Taxation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA3127 or LL4056 are not allowed to take ACC3605.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002/ACC1002 and BSP1004", + "corequisite": "" + }, + { + "moduleCode": "ACC3606", + "title": "Advanced Corporate Accounting and Reporting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3123 are not allowed to take ACC3606.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3111 or ACC3601", + "corequisite": "" + }, + { + "moduleCode": "ACC3611", + "title": "Corporate Governance and Ethics", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3124 or LL4065 are not allowed to take ACC3611.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002/ACC1002 and BSP1004", + "corequisite": "" + }, + { + "moduleCode": "ACC3612", + "title": "Risk Management and Internal Control", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3125 are not allowed to take ACC3612.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004/FIN2004 and BSP1004", + "corequisite": "" + }, + { + "moduleCode": "ACC3613", + "title": "Advanced Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3128 are not allowed to take ACC3613.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3121 or ACC3603", + "corequisite": "" + }, + { + "moduleCode": "ACC3614", + "title": "Valuation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA3126 are not allowed to take ACC3614.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004", + "corequisite": "" + }, + { + "moduleCode": "ACC3615", + "title": "Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3129 are not allowed to take ACC3615.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3111/ACC3601\nCo-requisite: FNA3123/ACC3606", + "corequisite": "" + }, + { + "moduleCode": "ACC3615A", + "title": "Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA3129, ACC3615, ACC3615B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3111/ACC3601", + "corequisite": "FNA3123/ACC3606" + }, + { + "moduleCode": "ACC3615B", + "title": "Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA3129, ACC3615, ACC3615A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3111/ACC3601", + "corequisite": "FNA3123/ACC3606" + }, + { + "moduleCode": "ACC3616", + "title": "Corporate Governance and Risk Management", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3611 Corporate Governance and Ethics\nACC3612 Risk Management and Internal Control\nOnly available to BBA and BBA(Acc) students from the\nAY2014-15 intake and later", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1002 Financial Accounting, BSP1004 Legal\nEnvironment of Business, FIN2004 Finance", + "corequisite": "" + }, + { + "moduleCode": "ACC3619", + "title": "Integrated Perspective in Accounting and Business", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed or concurrently taking the following:\n(a) All BBA (Acc) core modules; and\n(b) all other compulsory accounting modules", + "corequisite": "Pls see above (under Pre-requisite(s))." + }, + { + "moduleCode": "ACC3701", + "title": "Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3603", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-/Co-req: ACC2707 and ACC2709.", + "corequisite": "Pls see under \"Prerequisites\"." + }, + { + "moduleCode": "ACC3702", + "title": "Corporate and Securities Law", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3604; LC2008", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1702/BSP1702X", + "corequisite": "" + }, + { + "moduleCode": "ACC3703", + "title": "Taxation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3605; LL4056", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ACC1701/ACC1701X or EC2204) and BSP1702/BSP1702X", + "corequisite": "" + }, + { + "moduleCode": "ACC3704", + "title": "Advanced Corporate Accounting and Reporting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3606", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC2707 and ACC2708", + "corequisite": "" + }, + { + "moduleCode": "ACC3705", + "title": "Valuation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3614", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "ACC3706", + "title": "Corporate Governance and Risk Management", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3616", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ACC1701/ACC1701X or EC2204), BSP1702/BSP1702X and FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "ACC3707", + "title": "Integrated Perspectives in Accounting and Business", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC3619", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed or concurrently taking the following: (a) All BBA (Acc) core modules and (b) all other compulsory accounting modules.", + "corequisite": "Pls see under \"Prerequisites\"." + }, + { + "moduleCode": "ACC3711", + "title": "Managerial Planning and Control", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC3602", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC2706", + "corequisite": "" + }, + { + "moduleCode": "ACC3712", + "title": "Advanced Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3701 Assurance and Attestation", + "corequisite": "" + }, + { + "moduleCode": "ACC3713", + "title": "Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC2707 Corporate Accounting & Reporting I\nACC2708 Corporate Accounting & Reporting II", + "corequisite": "ACC3704 Advanced Corporate Accounting and Reporting" + }, + { + "moduleCode": "ACC4162E", + "title": "Seminars in Accounting: Risk Management Technology", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3612", + "corequisite": "" + }, + { + "moduleCode": "ACC4611", + "title": "Advanced Taxation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA4114 are not allowed to take ACC4611.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ACC4612", + "title": "Seminars in Accounting (SIA)", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the particular stream offered. It is envisaged that completion of one or more ACC3xxx modules will be a pre-requisite in most cases.", + "corequisite": "" + }, + { + "moduleCode": "ACC4612A", + "title": "SIA: Internal Auditing", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3603 Assurance and Attestation; and\nACC3616 Corporate Governance and Risk Management \n\nOR\n\nACC3603 Assurance and Attestation,\nACC3611 Corporate Governance and Ethics; and\nACC3612 Risk Management and Internal Control", + "corequisite": "" + }, + { + "moduleCode": "ACC4612D", + "title": "SIA: Advanced Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3615 Accounting Theory", + "corequisite": "" + }, + { + "moduleCode": "ACC4612E", + "title": "SIA: Risk Management Technology", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the particular stream offered. It is envisaged that completion of one or more ACC3xxx modules will be a pre-requisite in most cases.", + "corequisite": "" + }, + { + "moduleCode": "ACC4612F", + "title": "Seminars in Accounting: Public Sector Audit", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3603 Assurance and Attestation", + "corequisite": "" + }, + { + "moduleCode": "ACC4612G", + "title": "Seminars in Accounting: Advanced Corporate Governance", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3616 Corporate Governance and Risk Management\nOR ACC3611 Corporate Governance and Ethics", + "corequisite": "" + }, + { + "moduleCode": "ACC4612H", + "title": "Seminars in Accounting: Advanced Risk Management", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3616 Corporate Governance and Risk Management\nOR ACC3612 Risk Management and Internal Control", + "corequisite": "" + }, + { + "moduleCode": "ACC4612K", + "title": "Sem. in Acctg: Accounting & Business Analysis for Banks", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "ACC4761H", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. FIN2004 Finance; and\n2. ACC3601 Corporate Accounting and Reporting", + "corequisite": "" + }, + { + "moduleCode": "ACC4613", + "title": "Forensic Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3603 Assurance and Attestation", + "corequisite": "" + }, + { + "moduleCode": "ACC4614", + "title": "Financial Institution Audit & Compliance", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3616 Corporate Governance and Risk Management\nOR\nACC3612 Risk Management and Internal Control", + "corequisite": "" + }, + { + "moduleCode": "ACC4615", + "title": "Advanced Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA3128 or ACC3613 are not allowed to take ACC4615.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3121 or ACC3603", + "corequisite": "" + }, + { + "moduleCode": "ACC4616", + "title": "Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "Students who have passed FNA3129 and ACC3615 are not allowed to take ACC4616.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3111/ACC3601\nCo-requisite: FNA3123/ACC3606", + "corequisite": "" + }, + { + "moduleCode": "ACC4619", + "title": "Advanced Independent Study in Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "ACC4629", + "title": "Advanced Independent Study in Accounting", + "moduleCredit": 2, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "ACC4711", + "title": "Advanced Taxation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC4611", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3703", + "corequisite": "" + }, + { + "moduleCode": "ACC4712", + "title": "Forensic Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC4613", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3701", + "corequisite": "" + }, + { + "moduleCode": "ACC4713", + "title": "Financial Institution Audit & Compliance", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC4614", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3701 and ACC3706.", + "corequisite": "" + }, + { + "moduleCode": "ACC4714", + "title": "Advanced Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "ACC3613; ACC4615.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-req: ACC3701 and Pre-/Co-req: ACC3704.", + "corequisite": "Pls see under \"Prerequisites\"." + }, + { + "moduleCode": "ACC4715", + "title": "Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC3615; ACC4616.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-/Co-req: ACC3704", + "corequisite": "Pls see under \"Prerequisites\"." + }, + { + "moduleCode": "ACC4751", + "title": "Advanced Independent Study in Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "ACC4752", + "title": "Advanced Independent Study in Accounting (2 MCs)", + "moduleCredit": 2, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "ACC4761", + "title": "Seminars in Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "ACC4761A", + "title": "Seminars in Accounting: Internal Audit", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "ACC4612A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC2706, ACC3701 and ACC3706.", + "corequisite": "" + }, + { + "moduleCode": "ACC4761C", + "title": "Seminars in Accounting: Advanced Accounting Theory", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC4612D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC4715", + "corequisite": "" + }, + { + "moduleCode": "ACC4761D", + "title": "Seminars in Accounting: Risk Management Technology", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC4612E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the particular stream offered. It is envisaged that completion of one or more ACC3xxx modules will be a pre-requisite in most cases.", + "corequisite": "" + }, + { + "moduleCode": "ACC4761E", + "title": "Seminars in Accounting: Public Sector Audit", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC4612F", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3701", + "corequisite": "" + }, + { + "moduleCode": "ACC4761F", + "title": "Seminars in Accounting: Advanced Corporate Governance", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC4612G", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3706", + "corequisite": "" + }, + { + "moduleCode": "ACC4761G", + "title": "Seminars in Accounting: Advanced Risk Management", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ACC4612H", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC3706", + "corequisite": "" + }, + { + "moduleCode": "ACC4761H", + "title": "Sem. in Acctg: Accounting & Business Analysis for Banks", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "ACC4612K", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. FIN2704 Finance; and\n2. ACC2708 Corporate Accounting and Reporting II", + "corequisite": "" + }, + { + "moduleCode": "AH2101", + "title": "Introduction to Art History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AH2201", + "title": "Chinese Painting: Styles and Masters", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101", + "corequisite": "" + }, + { + "moduleCode": "AH2202", + "title": "Modern Art: A Critical Introduction", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101", + "corequisite": "" + }, + { + "moduleCode": "AH2203", + "title": "Empire and Art: India, Singapore, Malaya", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101", + "corequisite": "" + }, + { + "moduleCode": "AH3201", + "title": "A History of Contemporary Art", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101", + "corequisite": "" + }, + { + "moduleCode": "AH3202", + "title": "Time Traveller: The Curatorial in Southeast Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101", + "corequisite": "" + }, + { + "moduleCode": "AH3203", + "title": "Collecting Art in Europe and Asia (1500 CE – 2000 CE)", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101", + "corequisite": "" + }, + { + "moduleCode": "AH3204", + "title": "Methods and Approaches to Art History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AH2101 Introduction To Art History", + "corequisite": "" + }, + { + "moduleCode": "AH3550", + "title": "Art History Internship", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) AH2101 and (2) 1 AH-coded module", + "corequisite": "" + }, + { + "moduleCode": "ALS1010", + "title": "Learning to Learn Better", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ALS1010CP", + "title": "Learning to Learn Better", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ALS1020", + "title": "Learning to Choose Better", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1101", + "title": "Design I", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "All non-architecture students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1102", + "title": "Design 2", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "All non-architecture students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1121", + "title": "Spatial - Visual Communication", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1324", + "title": "Architectural Tech. 1 - Basic Principles", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1325", + "title": "Arch. Tech. Ii - Enclosure Techniques", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1326", + "title": "Architectural Construction", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All non-architecture students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1327", + "title": "Structural Principles", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1328", + "title": "The Tropical Envelope", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1721", + "title": "Climate Responsive Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1722", + "title": "Architectural Env. 1 - Nature and Place", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1723", + "title": "Arch. Env. Ii - Building and Landscape", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR1724", + "title": "Introduction To Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2101", + "title": "Design 3", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR1101 Design 1 Grade 'C' or Grade “S”; AR1102 Design 2 Grade 'C' or Grade “S”;", + "corequisite": "" + }, + { + "moduleCode": "AR2102", + "title": "Design 4", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR1101 Design 1 Grade 'C' or Grade “S”; AR1102 Design 2 Grade 'C' or Grade “S”", + "corequisite": "" + }, + { + "moduleCode": "AR2121", + "title": "Architecture and Community: from Singapore to the World", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2151", + "title": "Technology Integration I", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2221", + "title": "History and Theory of Southeast Asia Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2222", + "title": "History & Theory Of Western Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2223", + "title": "Theory Of Urban Design & Planning", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2224", + "title": "Ideas and Approaches in Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2225", + "title": "Reading Visual Images", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK2044", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2226", + "title": "History & Theory Of Modern Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2324", + "title": "Architectural Technology Iii", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2325", + "title": "Arch. Tech. Iv - Construction Systems", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2326", + "title": "Architectural Construction II", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All non-architecture students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR1326 Architectural Construction 1", + "corequisite": "" + }, + { + "moduleCode": "AR2327", + "title": "Architectural Tectonics", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2511", + "title": "Digital Design Media", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2521", + "title": "Digital Modelling and Simulation", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2522", + "title": "Computational Thinking: Performance Based Design", + "moduleCredit": 2, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2523", + "title": "Computational Thinking: Building Information Modelling", + "moduleCredit": 2, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2524", + "title": "Spatial Computational Thinking", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2721", + "title": "Architectural Environment Iii", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2722", + "title": "Design And The Environment", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2723", + "title": "Strategies for Sustainable Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR2724", + "title": "Designing with Environmental Systems", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3101", + "title": "Design 5", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR2101 Design 3 Grade 'C' or Grade “S”; AR2102 Design 4 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR3101A", + "title": "Design 5 (Landscape Architecture Emphasis)", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR2101 Design 3 Grade 'C' or Grade “S”; AR2102 Design 4 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR3102", + "title": "Design 6", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR2101 Design 3 Grade 'C' or Grade “S”; AR2102 Design 4 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR3102A", + "title": "Design 6 (Landscape Architecture Emphasis)", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR2101 Design 3 Grade 'C' or Grade “S”; AR2102 Design 4 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR3151", + "title": "Design - ISM", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3152", + "title": "Technology Integration II", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3221", + "title": "Topics In History & Theory Of Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3223", + "title": "Introduction to Urbanism", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3321", + "title": "Technology Integration", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3322", + "title": "Design Management", + "moduleCredit": 3, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3323", + "title": "Architectural Construction 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Non-architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3324", + "title": "Architectural Structures", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have read BU2484 Building Structures/ PF2102 Structural Systems", + "corequisite": "" + }, + { + "moduleCode": "AR3411", + "title": "Architecture Internship Programme", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have taken AR3101 and AR3102", + "corequisite": "" + }, + { + "moduleCode": "AR3412", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "Full-time undergraduate students who have accumulated more than 12MCs for previous internship stints.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "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.", + "corequisite": "" + }, + { + "moduleCode": "AR3421", + "title": "Introduction to Architectural Practice", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3611", + "title": "Conservation & Adaptive Re-Use", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3612", + "title": "Cultural Heritage Studies", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3613", + "title": "Southeast Asian Cosmopolitan Urbanism", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3614", + "title": "Sustainable Urbanism in Asia", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR3721", + "title": "Building Environmental System Modelling", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR1326, AR1731, AR2326, AR2723", + "corequisite": "" + }, + { + "moduleCode": "AR4001", + "title": "Advanced Architectural Study 1", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4002", + "title": "Advanced Architectural Study 2", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4101", + "title": "Design 7", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "AR3101 Design 5 Grade 'C'; AR3102 Design 6 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR4101A", + "title": "Design 7", + "moduleCredit": 10, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4102", + "title": "Design 8", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All non-architecture students", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "AR3101 Design 5 Grade 'C'; AR3102 Design 6 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR4103", + "title": "Architectural & Technology Design 1", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All non architecture students", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "AR3101 Design 1 Grade 'C'; AR3102 Design 2 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR4103A", + "title": "Architectural & Technology Design 1", + "moduleCredit": 10, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4104", + "title": "Architectural & Technology Design 2", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All non architecture students", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "AR3101 Design 5 Grade 'C'; AR3102 Design 6 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR4111", + "title": "Design Futures", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4142", + "title": "Research Report", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4222", + "title": "Asian Architecture and Urban History", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4223", + "title": "Architecture and Urban Heritage", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4322", + "title": "Design Simulation & Analysis", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4323", + "title": "Assessment of Sustainable Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4421", + "title": "Architecture Internship Programme", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have taken AR3101 and AR3102", + "corequisite": "" + }, + { + "moduleCode": "AR4611", + "title": "New Public Space In The Asian Metropolis", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4612", + "title": "Public Waterfronts In The Asian Metropolis", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4951", + "title": "Topics in History & Theory of Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4951G", + "title": "Topics In History And Theory Of Architecture - Curating Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4952", + "title": "Topics in Urban Studies", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4953", + "title": "Topics in Design Technology", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4954", + "title": "Topics in Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4955", + "title": "Topics in Architectural Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR4955G", + "title": "Architectural Design- Video and Presentation", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5001", + "title": "Sep Elective 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5011", + "title": "Research Methodology", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5058", + "title": "Independent Studio", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5100", + "title": "Thesis Independent Study", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5121", + "title": "Special Topics in Technology", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Non architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5141", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Non Architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5142", + "title": "Technical Dissertation", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Non Architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5221", + "title": "Contemporary Theories", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5321", + "title": "Advanced Architectural Integration", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5322", + "title": "Renewable Resources and Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5421", + "title": "Architectural Practice 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5422", + "title": "Architectural Practice 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5423", + "title": "Architectural Practice", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5601", + "title": "Urban Design Theory and Praxis", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5770", + "title": "Graduate Seminar", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5801", + "title": "Options Design Research Studio 1", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Non Architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Minimum C grade in AR3101/a and AR3102/a", + "corequisite": "" + }, + { + "moduleCode": "AR5802", + "title": "Options Design Research Studio 2", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "Non Architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Minimum C grade in AR3101/a and AR3102/a", + "corequisite": "" + }, + { + "moduleCode": "AR5803", + "title": "Architectural & Technology Design 1", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "All non architecture students", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "AR3101 Design 1 Grade 'C'; AR3102 Design 2 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR5804", + "title": "Architectural & Technology Design 2", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "All non architecture students", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "AR3101 Design 5 Grade 'C'; AR3102 Design 6 Grade 'C'", + "corequisite": "" + }, + { + "moduleCode": "AR5805", + "title": "Advanced Architecture Studio", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Non Architecture students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Minimum C grade in AR5801/AR5803 and AR5802/AR5804", + "corequisite": "" + }, + { + "moduleCode": "AR5806", + "title": "Architectural Design Research Report", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5807", + "title": "Architectural Design Thesis", + "moduleCredit": 20, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5808", + "title": "Final Design Project", + "moduleCredit": 20, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951", + "title": "Topics in History & Theory of Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951A", + "title": "Topics in History and Theory of Architecture 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951B", + "title": "Topics in History & Theory of Architecture 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951C", + "title": "Topics in History and Theory of Architecture 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951D", + "title": "Topics in History & Theory of Architecture 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951E", + "title": "Topics in History & Theory of Architecture 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951F", + "title": "Topics in History & Theory of Architecture 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951G", + "title": "Topics in History and Theory of Architecture 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951H", + "title": "Topics in History and Theory of Architecture 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5951L", + "title": "Topics in History and Theory of Architecture 12", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952", + "title": "Topics in Urbanism", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952A", + "title": "Topics in Urbanism 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952B", + "title": "Topics in Urbanism 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952C", + "title": "Topics in Urbanism 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952D", + "title": "Topics in Urbanism 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952E", + "title": "Topics in Urbanism 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952F", + "title": "Topics in Urbanism 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952G", + "title": "Topics in Urbanism 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952H", + "title": "Topics in Urbanism 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952I", + "title": "Topics in Urbanism 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BA(Arch) Year 4 and Masters students", + "corequisite": "" + }, + { + "moduleCode": "AR5952J", + "title": "Topics in Urbanism 10", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952K", + "title": "Topics in Urbanism 11", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952L", + "title": "Topics in Urbanism 12", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5952M", + "title": "Topics in Urbanism 13", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953", + "title": "Topics in Design Technology 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953A", + "title": "Topics in Design Technology 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953B", + "title": "Topics in Design Technology 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953C", + "title": "Topics in Design Technology 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953D", + "title": "Topics in Design Technology 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953E", + "title": "Topics in Design Technology 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953F", + "title": "Topics in Design Technology 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953G", + "title": "Topics in Design Technology 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953H", + "title": "Topics in Design Technology 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5953I", + "title": "Topics in Design Technology 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954", + "title": "Topics in Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954A", + "title": "Topics in Landscape Architecture 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954B", + "title": "Topics in Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954C", + "title": "Topics in Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954D", + "title": "Topics in Landscape Architecture 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954E", + "title": "Topics in Landscape Architecture 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954F", + "title": "Topics in Landscape Architecture 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954G", + "title": "Topics in Landscape Architecture 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954H", + "title": "Topics in Landscape Architecture 8: Methods & Concepts", + "moduleCredit": 0, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5954I", + "title": "Topics in Landscape Architecture 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955", + "title": "Topics in Research by Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955A", + "title": "Topics in Research by Design 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955B", + "title": "Topics in Research by Design 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955C", + "title": "Topics in Research by Design 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955D", + "title": "Topics in Research by Design 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955E", + "title": "Topics in Research by Design 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955F", + "title": "Topics in Research by Design 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955G", + "title": "Topics in Research by Design 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955H", + "title": "Topics in Research by Design 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955I", + "title": "Topics in Research by Design 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955J", + "title": "Topics in Research by Design 10", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955K", + "title": "Topics in Research by Design 11", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955M", + "title": "Topics in Research by Design 13", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955N", + "title": "Topics in Research by Design 14", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955O", + "title": "Topics in Research by Design 15", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5955P", + "title": "Topics in Research by Design 16", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956", + "title": "Topics in Design and Built Environment", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956A", + "title": "Topics in Design and Built Environment 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956B", + "title": "Topics in Design and Built Environment 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956C", + "title": "Topics in Design and Built Environment 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956D", + "title": "Topics in Design and Built Environment 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956E", + "title": "Topics in Design and Built Environment 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5956F", + "title": "Topics in Design and Built Environment 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957", + "title": "Topics in History and Theory of Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957A", + "title": "Topics in History and Theory of Architecture 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957B", + "title": "Topics in History and Theory of Architecture 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957C", + "title": "Topics in History and Theory of Architecture 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957D", + "title": "Topics in History and Theory of Architecture 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957E", + "title": "Topics in History and Theory of Architecture 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957F", + "title": "Topics in History and Theory of Architecture 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957G", + "title": "Topics in History and Theory of Architecture 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957H", + "title": "Topics in History and Theory of Architecture 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957I", + "title": "Topics in History and Theory of Architecture 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957J", + "title": "Topics in History and Theory of Architecture 10", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957K", + "title": "Topics in History and Theory of Architecture 11", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957L", + "title": "Topics in History and Theory of Architecture 12", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957M", + "title": "Topics in History and Theory of Architecture 13", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957N", + "title": "Topics in History and Theory of Architecture 14", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5957O", + "title": "Topics in History and Theory of Architecture 15", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958", + "title": "Topics in Urbanism", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958A", + "title": "Topics in Urbanism 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958B", + "title": "Topics in Urbanism 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958C", + "title": "Topics in Urbanism 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958D", + "title": "Topics in Urbanism 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958E", + "title": "Topics in Urbanism 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958F", + "title": "Topics in Urbanism 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958G", + "title": "Topics in Urbanism 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958H", + "title": "Topics in Urbanism 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958I", + "title": "Topics in Urbanism 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958J", + "title": "Topics in Urbanism 10", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958K", + "title": "Topics in Urbanism 11", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958L", + "title": "Topics in Urbanism 12", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958M", + "title": "Topics in Urbanism 13", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958N", + "title": "Topics in Urbanism 14", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5958O", + "title": "Topics in Urbanism 15", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959", + "title": "Topics in Design Technology", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959A", + "title": "Topics in Design Technology 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959B", + "title": "Topics in Design Technology 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959C", + "title": "Topics in Design Technology 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959D", + "title": "Topics in Design Technology 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959E", + "title": "Topics in Design Technology 5", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959F", + "title": "Topics in Design Technology 6", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959G", + "title": "Topics in Design Technology 7", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959H", + "title": "Topics in Design Technology 8", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959I", + "title": "Topics in Design Technology 9", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959J", + "title": "Topics in Design Technology 10", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959K", + "title": "Topics in Design Technology 11", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959L", + "title": "Topics in Design Technology 12", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959M", + "title": "Topics in Design Technology 13", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959N", + "title": "Topics in Design Technology 14", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5959O", + "title": "Topics in Design Technology 15", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR5995L", + "title": "Topics in Research by Design 12", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AR6770", + "title": "Phd Seminar", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS2236", + "title": "US Media in the 20th Century & Beyond", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2236", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS2237", + "title": "The U.S.: From Settlement to Superpower", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "HY2237, GEK2000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS3230", + "title": "American Business: Industrial Revolution-Web", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS3240, HY3230, HY3240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS3231", + "title": "American Literature I", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "AS3232", + "title": "American Literature II", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "AS3233", + "title": "Regionalism in American Landscapes", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Preclusions: AS2231, EN2252, EN3233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS3234", + "title": "Asian American Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3234", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "AS3238", + "title": "The Political History of the US", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS3239", + "title": "The United States in the Asia-Pacific", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY3239", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AS3240", + "title": "Making America Modern", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS3230, HY3230, HY3240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any level 1000 or 2000 HY or AS modules", + "corequisite": "" + }, + { + "moduleCode": "AS4219", + "title": "American Intellectual History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY4219", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nCompleted 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.50 or be on the Honours track.\n\nCohort 2012 onwards:\nCompleted 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "AS4232", + "title": "Topics in American Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN4232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "AS4233", + "title": "Topics in American Culture", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN4233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201CH", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject – Chinese Language\nand Literature.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201EC", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject – Economics.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201EN", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject – Literature in English.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201GE", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject – Geography.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201HY", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject – History.", + "corequisite": "" + }, + { + "moduleCode": "ASP1201MS", + "title": "H3 Humanities & Soc Sci Research Prog", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Reading the relevant H2 subject – Malay Language and\nLiterature.", + "corequisite": "" + }, + { + "moduleCode": "AUD5101", + "title": "Acoustics", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AUD5102", + "title": "Anatomy & Physiology", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AUD5103", + "title": "Pathologies of the Auditory System", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "AUD5102: Anatomy & Physiology" + }, + { + "moduleCode": "AUD5104", + "title": "Perception of Sound & Speech", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "AUD5101: Acoustics" + }, + { + "moduleCode": "AUD5105", + "title": "Hearing Devices and Rehabilitation A - Part 1", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101: Acoustics\nAUD5104: Perception of Sound and Speech", + "corequisite": "AUD5106: Clinical Audiology" + }, + { + "moduleCode": "AUD5106", + "title": "Clinical Audiology A - Part 1", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101: Acoustics\nAUD5102: Anatomy & Physiology\nAUD5103: Pathologies of the Auditory System\nAUD5104: Perception of Sound and Speech", + "corequisite": "AUD5105: Hearing Devices and Rehabilitation Part A; AUD5108: Electrophysiological Assessment A." + }, + { + "moduleCode": "AUD5107", + "title": "Paediatric Audiology A - Part 1", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-requisites: NIL\nModule 1: Acoustics\nModule 2: Anatomy and Physiology\nModule 3: Pathologies of the Auditory System\nModule 4: Perception of Sound and Speech", + "corequisite": "Module 5: Clinical Audiology A (Part 1)" + }, + { + "moduleCode": "AUD5108", + "title": "Electrophysiological Assessment A", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5102: Anatomy and Physiology\nAUD5103: Pathologies of the Auditory System", + "corequisite": "AUD5106: Clinical Audiology A – Part 1; AUD5107: Paediatric Audiology A – Part 1" + }, + { + "moduleCode": "AUD5109", + "title": "Professional Practice Issues & Community Audiology", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AUD5110", + "title": "Vestibular Assessment and Management A", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5102 Anatomy & Physiology\nAUD5103 Pathologies of the Auditory System", + "corequisite": "" + }, + { + "moduleCode": "AUD5111", + "title": "Hearing Devices & Rehabilitation A - Part 2", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101: Acoustic\nAUD5104: Perception of Sound and Speech\nAUD5105: Hearing Devices & Rehabilitation A - Part 1", + "corequisite": "AUD5112 Clinical Audiology A - Part 2" + }, + { + "moduleCode": "AUD5112", + "title": "Clinical Audiology A - Part 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101: Acoustic\nAUD5102: Anatomy & Physiology\nAUD5103: Pathologies of the Auditory System\nAUD5104: Perception of Sound and Speech\nAUD5105: Hearing Devices & Rehabilitation A (Part 1)", + "corequisite": "AUD5108: Electrophysiology Assessment A; AUD5111: Hearing Devices & Rehabilitation A (Part 2)" + }, + { + "moduleCode": "AUD5113", + "title": "Paediatric Audiology A - Part 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101 Acoustics\nAUD5102 Anatomy and Physiology\nAUD5103 Pathologies of the Auditory System\nAUD5104 Perception of Sound and Speech\nAUD5106 Clinical Audiology A (Part 1)\nAUD5107 Paediatric Audiology A (Part 1)", + "corequisite": "AUD5112 Clinical Audiology A (Part 2); AUD5114 Electrophysiology Assessment A" + }, + { + "moduleCode": "AUD5114", + "title": "Electrophysiological Assessment B", + "moduleCredit": 2, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5102 Anatomy and Physiology\nAUD5103 Pathologies of the Auditory System\nAUD5106 Clinical Audiology A (Part 1)\nAUD5107 Paediatric Audiology A (Part 1)\nAUD5108 Electrophysiology Assessment A", + "corequisite": "AUD5112 Clinical Audiology A (Part 2); AUD5113 Paediatric Audiology A (Part 2)" + }, + { + "moduleCode": "AUD5115", + "title": "Experimental Design & Statistics", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic spread sheet skills. Computer access with Excel.", + "corequisite": "" + }, + { + "moduleCode": "AUD5216", + "title": "Vestibular Assessment and Management B", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5102: Anatomy & Physiology\nAUD5103: Pathologies of Auditory System\nAUD5110: Vestibular Assessment and Management A", + "corequisite": "" + }, + { + "moduleCode": "AUD5217", + "title": "Hearing Devices and Rehabilitation B (Part 1)", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101: Acoustics\nAUD5104: Perception of Sound and Speech\nAUD5105 & AUD5111: Hearing Devices and Rehabilitation A - Part 1 & Part 2\nAUD5106 & AUD5112: Clinical Audiology A", + "corequisite": "AUD52117: Clinical Audiology B (Part 1)" + }, + { + "moduleCode": "AUD5218", + "title": "Clinical Audiology B (Part 1)", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5105 & AUD5111: Hearing Devices and Rehabilitation A\nAUD5106 & AUD5112: Clinical Audiology A\nAUD5107 & AUD5113: Paediatric Audiology A\nAUD5108 & AUD5114: Electrophysiological Assessment A & B", + "corequisite": "AUD5217: Hearing Devices and Rehabilitation B (Part 1); AUD5118: Paediatric Audiology B (Part 1)" + }, + { + "moduleCode": "AUD5219", + "title": "Paediatric Audiology B - Part 1", + "moduleCredit": 3, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5105 & AUD5111: Hearing Devices and Rehabilitation A (Part 1 & Part 2)\nAUD5107 & AUD5113: Paediatric Audiology A (Part 1 & Part 2)\nAUD5108 & AUD5114: Electrophysiological Assessment", + "corequisite": "AUD5217: Hearing Devices and Rehabilitation B (Part 1); AUD5218: Clinical Audiology B (Part 1)" + }, + { + "moduleCode": "AUD5220", + "title": "Independent Studies in Audiology (Research project - part 1)", + "moduleCredit": 8, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5115: Experimental Design and Statistics", + "corequisite": "" + }, + { + "moduleCode": "AUD5221", + "title": "Hearing Devices and Rehabilitation B (Part 2)", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5101: Acoustics\nAUD5104: Perception of Sound and Speech\nAUD5105 & AUD5111: Hearing Devices and Rehabilitation A – Part 1 & Part 2\nAUD5106 & AUD5112: Clinical Audiology A", + "corequisite": "AUD5222: Clinical Audiology B (Part 1)" + }, + { + "moduleCode": "AUD5222", + "title": "Clinical Audiology B (Part 2)", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5105 - AUD5218", + "corequisite": "AUD5221: Hearing Devices and Rehabilitation B (Part 2); AUD5223: Paediatric Audiology B (Part 2)" + }, + { + "moduleCode": "AUD5223", + "title": "Paediatric Audiology B - Part 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5105 - AUD5218", + "corequisite": "AUD5221: Hearing Devices and Rehabilitation B (Part 2); AUD5222: Clinical Audiology B (Part 2)" + }, + { + "moduleCode": "AUD5224", + "title": "Independent Studies in Audiology (Research project - part 2)", + "moduleCredit": 8, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AUD5220 Independent studies in Audiology Part 1", + "corequisite": "" + }, + { + "moduleCode": "AX1821", + "title": "Faculty Exchange Module", + "moduleCredit": 2, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AX3722", + "title": "Special Exchange Module", + "moduleCredit": 2, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AX3723", + "title": "Special Exchange Module", + "moduleCredit": 2, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AY1111", + "title": "Anatomy", + "moduleCredit": 1, + "department": "Anatomy", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "AY1130", + "title": "Human Anatomy and Physiology I", + "moduleCredit": 4, + "department": "Anatomy", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BAA6001", + "title": "Accounting Research Seminars I", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BAA6002", + "title": "Accounting Research Seminars II", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BAA6001 Accounting Research Seminars I", + "corequisite": "" + }, + { + "moduleCode": "BAA6003A", + "title": "Seminar on Empirical Capital Markets Research", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BAA6001 (BAA6002 and BAA6003A could be taken in different order).", + "corequisite": "" + }, + { + "moduleCode": "BAA6003B", + "title": "PhD Seminar on Fixed Income Research", + "moduleCredit": 2, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BAA6003C", + "title": "Seminar on Financial Analyst Research", + "moduleCredit": 2, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BAA6001 (BAA6002 and BAA6003C could be taken in \ndifferent order).", + "corequisite": "" + }, + { + "moduleCode": "BAA6004", + "title": "PhD Seminar on Analytical Research in Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBB8100", + "title": "Advance Placement Credit 2", + "moduleCredit": 2, + "department": "NUS", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBP5006", + "title": "Independent Study:international Business in the Asia Pacific", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBP6781", + "title": "Theory of Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBP6782A", + "title": "Seminar in Corporate Strategy", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBP6782B", + "title": "Seminar in Behavioural Strategic Management", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBP6791", + "title": "Seminar in International Business", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BBP6794", + "title": "Seminar in Innovation and Entrepreneurship", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BCP4002", + "title": "Consulting Practicum", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All levels 1000 and 2000 foundation modules. Additional prerequisites may be imposed by the supervisor(s) depending on the topics of research.", + "corequisite": "" + }, + { + "moduleCode": "BCP4002B", + "title": "Consulting Practicum", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All levels 1000 and 2000 foundation modules. Additional prerequisites may be imposed by the supervisor(s) depending o the topics of research.", + "corequisite": "" + }, + { + "moduleCode": "BDC5001", + "title": "Operations Modeling and Applications", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5101", + "title": "Deterministic Operations Research Models", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5102", + "title": "Stochastic Operations Research Models", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5111", + "title": "Linear Programming", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5113", + "title": "Convex Optimization", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5115", + "title": "Discrete Optimization and Applications", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5123", + "title": "Simulation Modeling & Analysis", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5131", + "title": "Management of Information", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC5201", + "title": "Multivariate Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6111", + "title": "Foundations of Optimization", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IE6001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A basic knowledge of linear algebra", + "corequisite": "" + }, + { + "moduleCode": "BDC6112", + "title": "Stochastic Processes I", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "IE6004 Stochastic Process I", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6113", + "title": "Foundations of Inventory Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6114", + "title": "Logistics and Supply Chain", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6218", + "title": "Seminars in Optimization I", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6219", + "title": "Seminars in Optimization II", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6221", + "title": "Stochastic Modelling and Optimization", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should preferably have basic knowledge of stochastic processes which could be fulfilled by taking the module BDC 6112 or IE6004.", + "corequisite": "" + }, + { + "moduleCode": "BDC6228", + "title": "Seminars In Stochastic Processes I", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6229", + "title": "Seminars In Stochastic Processes II", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6248", + "title": "Seminars In Operations Management I", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BDC6301", + "title": "Bayesian Modeling and Decision-Making", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IE6301", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BDC6112/IE6004 Stochastic Processes I", + "corequisite": "" + }, + { + "moduleCode": "BDC6302", + "title": "Discrete Optimization and Algorithms", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IE6302", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BDC6111/IE6001 Foundations of Optimization", + "corequisite": "" + }, + { + "moduleCode": "BDC6303", + "title": "Queues and Stochastic Networks", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IE6507 Queues and Stochastic Networks", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE6505/ BDC6306 Stochastic Processes II", + "corequisite": "" + }, + { + "moduleCode": "BDC6304", + "title": "Robust modelling and optimization", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IE6304", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Theory of linear programming, including duality theory.\nBasic knowledge of algorithms and complexity.", + "corequisite": "" + }, + { + "moduleCode": "BDC6305", + "title": "Theory and Algorithms for Dynamic Programming", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "IE6509 Theory and Algorithms for Dynamic Programming", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Suitable mathematical maturity", + "corequisite": "" + }, + { + "moduleCode": "BDC6306", + "title": "Stochastic Processes II", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "IE6505 Stochastic Processes II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BDC6112/IE6004 Stochastic Processes I", + "corequisite": "At least one undergraduate course in Calculus." + }, + { + "moduleCode": "BDC6307", + "title": "Introduction to Data Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "IE6307", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Calculus, Linear Algebra, Basic Probability Theory", + "corequisite": "" + }, + { + "moduleCode": "BFA6006B", + "title": "Independent Study: Mortgage-Backed Securities and Banking", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BFS1001", + "title": "Personal Development & Career Management", + "moduleCredit": 0, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BFS2001", + "title": "Personal Development and Career Management II", + "moduleCredit": 0, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH1001", + "title": "Management & Organization", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH1002", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Finance and Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH1002E", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Finance and Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH1003", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH1004", + "title": "Legal Environment of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH1005", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH2001", + "title": "Macro & International Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH2002", + "title": "Managerial Accounting", + "moduleCredit": 4, + "department": "Finance and Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH2003", + "title": "Management Science", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH2004", + "title": "Finance", + "moduleCredit": 4, + "department": "Finance and Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH2005", + "title": "Asia Pacific Business & Society", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BH2006", + "title": "Operations Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BHD4001", + "title": "Honours Dissertation", + "moduleCredit": 12, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Varies depending on topics of research", + "corequisite": "" + }, + { + "moduleCode": "BHD4001C", + "title": "Honours Dissertation", + "moduleCredit": 12, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Varies depending on topics of research", + "corequisite": "" + }, + { + "moduleCode": "BI3001", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 60 MCs. Students should attend and complete one of two not-for-credit Career Creation Starter (STR) modules.", + "corequisite": "" + }, + { + "moduleCode": "BI3001A", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3001B", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3001C", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3001D", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3001E", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3001F", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3001G", + "title": "Business Internship I", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3002", + "title": "Business Internship II", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 60 MCs. Students should attend and complete one of two not-for-credit Career Creation Starter (STR) modules.", + "corequisite": "" + }, + { + "moduleCode": "BI3002A", + "title": "Business Internship II", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3002B", + "title": "Business Internship II", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3002C", + "title": "Business Internship II", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3002D", + "title": "Business Internship II", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BI3003", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "Full-time NUS business school undergraduate students who have accumulated more than 12 MCs for previous internship stints under BI3001 and/or BI3002.\n\nFull-time NUS business school undergraduate students who have previously completed a BI3003 internship.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to 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. Students should attend and complete one of two not-for-credit Career Creation Starter (STR) modules.", + "corequisite": "" + }, + { + "moduleCode": "BI3003A", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Full-time NUS business school undergraduate students who have accumulated more than 12 MCs for previous internship stints under BI3001 and/or BI3002.\n\nFull-time NUS business school undergraduate students who have previously completed a BI3003 internship.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to 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.\n\nStudents should attend and complete one of two not-for-credit Business Finishing School (BFS) modules.", + "corequisite": "" + }, + { + "moduleCode": "BI3003B", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Full-time NUS business school undergraduate students who have accumulated more than 12 MCs for previous internship stints under BI3001 and/or BI3002.\n\nFull-time NUS business school undergraduate students who have previously completed a BI3003 internship.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to 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.\n\nStudents should attend and complete one of two not-for-credit Business Finishing School (BFS) modules.", + "corequisite": "" + }, + { + "moduleCode": "BI3003C", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Full-time NUS business school undergraduate students who have accumulated more than 12 MCs for previous internship stints under BI3001 and/or BI3002.\n\nFull-time NUS business school undergraduate students who have previously completed a BI3003 internship.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to 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.\n\nStudents should attend and complete one of two not-for-credit Business Finishing School (BFS) modules.", + "corequisite": "" + }, + { + "moduleCode": "BI3003D", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "Full-time NUS business school undergraduate students who have accumulated more than 12 MCs for previous internship stints under BI3001 and/or BI3002.\n\nFull-time NUS business school undergraduate students who have previously completed a BI3003 internship.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to 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.\n\nStudents should attend and complete one of two not-for-credit Business Finishing School (BFS) modules.", + "corequisite": "" + }, + { + "moduleCode": "BIS3001", + "title": "Independent Study Module in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "This will vary according to specific topics.", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "This will vary according to specific topics.", + "corequisite": "" + }, + { + "moduleCode": "BIS3001A", + "title": "Independent Study Module in Business", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "This will vary according to specific topics.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This will vary according to specific topics.", + "corequisite": "" + }, + { + "moduleCode": "BIS3751", + "title": "Independent Study in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "BL5102", + "title": "Environmental Science", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5198", + "title": "Graduate Seminar Module in Biological Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge in life sciences", + "corequisite": "" + }, + { + "moduleCode": "BL5201", + "title": "Structural Biology And Proteomics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have completed any two of the following undergraduate courses or their equivalent: Biochemical Techniques; Proteins and Enzymes; Physical Chemistry; and Organic Chemistry.", + "corequisite": "" + }, + { + "moduleCode": "BL5202A", + "title": "Biophysical Methods in Life Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For those students who have taken undergraduate courses of organic chemistry, physics and biochemistry", + "corequisite": "" + }, + { + "moduleCode": "BL5203", + "title": "Molecular Recognition and Interactions", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have read Biology and Chemistry at undergraduate level", + "corequisite": "" + }, + { + "moduleCode": "BL5204", + "title": "Graduate Bootcamp for Biotechnology Industry", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students with a basic degree in Life Sciences related disciplines which include bioengineering, biotechnology, biocomputing, chemical biology and biological sciences", + "corequisite": "" + }, + { + "moduleCode": "BL5207A", + "title": "Topics In Developmental Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge in biology at undergraduate level", + "corequisite": "" + }, + { + "moduleCode": "BL5209", + "title": "Directed Studies in Molecular Ecology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open to graduate students only. Students without a background in ecology should consult the lecturers first.", + "corequisite": "" + }, + { + "moduleCode": "BL5210", + "title": "Biogeography", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5212", + "title": "Critical Thinking in Biological Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5213", + "title": "Protein Design & Engineering", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5214", + "title": "Advanced Proteins Nmr", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic understanding of protein chemistry is essential. Pre-university level physics and mathematics are desired. Students with strong physics or computer background who want to know more on protein NMR are also encouraged.", + "corequisite": "" + }, + { + "moduleCode": "BL5215", + "title": "Macromolecular X-Ray Crystallography", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5216", + "title": "Advanced Genetics and Genome Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have read advanced undergraduate courses in molecular biology and genetics", + "corequisite": "" + }, + { + "moduleCode": "BL5217", + "title": "Population Genomics and Phylogenomics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5218", + "title": "Directed Studies in Behavioural Ecology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5219", + "title": "Field Research Techniques for Plant Ecology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge in biology", + "corequisite": "" + }, + { + "moduleCode": "BL5220", + "title": "Advanced Animal Development", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A strong foundation in life sciences and molecular biology", + "corequisite": "" + }, + { + "moduleCode": "BL5221", + "title": "Plant and Microbial Development", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge in cell biology and development", + "corequisite": "" + }, + { + "moduleCode": "BL5222", + "title": "Cellular Mechanisms", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A strong foundation in life sciences and molecular biology", + "corequisite": "" + }, + { + "moduleCode": "BL5223", + "title": "Advanced Molecular Genetics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge in molecular biology and genetics", + "corequisite": "" + }, + { + "moduleCode": "BL5224", + "title": "Special topics in Biological Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic background in molecular biology, calculus and differential equations, and consent of course lecturers.", + "corequisite": "" + }, + { + "moduleCode": "BL5225", + "title": "Marine Conservation", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open to graduate students only", + "corequisite": "" + }, + { + "moduleCode": "BL5226", + "title": "Novel applications in Bioimaging Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have basic background in molecular and cell biology, and consent of course lecturers.", + "corequisite": "" + }, + { + "moduleCode": "BL5227A", + "title": "Introduction to Evolution of Development", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have attended advanced undergraduate courses in biology.", + "corequisite": "" + }, + { + "moduleCode": "BL5227B", + "title": "Evolution of Development", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The course requires some basic training in Evolutionary Biology and Developmental Biology in order to enable students to integrate these disciplines throughout the course.", + "corequisite": "" + }, + { + "moduleCode": "BL5228", + "title": "Advances in Cell and Molecular Biology", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have attended advanced undergraduate\ncourses in cell and molecular biology.", + "corequisite": "" + }, + { + "moduleCode": "BL5229", + "title": "Fundamentals in Biophysical Sciences", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have attended advanced undergraduate courses in Biology and with basic concepts in Mathematics and Physics.", + "corequisite": "" + }, + { + "moduleCode": "BL5230", + "title": "Biological Invasions", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5231", + "title": "Writing in the Biological Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5232", + "title": "Introduction to Bioimaging", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5232A", + "title": "Practical Bioimaging A: Electron Microscopy", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BL5232 Introduction to Bioimaging", + "corequisite": "" + }, + { + "moduleCode": "BL5232B", + "title": "Practical Bioimaging B: Light Microscopy", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BL5232 Introduction to Bioimaging", + "corequisite": "" + }, + { + "moduleCode": "BL5232C", + "title": "Practical Bioimaging C: Hands-on Microscopy", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BL5232 Introduction to Bioimaging", + "corequisite": "" + }, + { + "moduleCode": "BL5233", + "title": "Data Analysis for Conservation Biology with R", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "An undergraduate course in statistics.", + "corequisite": "" + }, + { + "moduleCode": "BL5234", + "title": "Quantitative Methods and Critical Thinking in Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Undergraduate background in ecology, evolution or epidemiology. Students from mathematical or quantitative science backgrounds also eligible.", + "corequisite": "" + }, + { + "moduleCode": "BL5235", + "title": "Advanced Optics for Microscopy", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BL5232 Introduction to Bioimaging", + "corequisite": "" + }, + { + "moduleCode": "BL5236", + "title": "Introduction to Electron Microscopy for Life Sciences", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5237", + "title": "Computational Biology: Sequences, Structures, Functions", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic understanding of physics/chemistry and interest in structural biology", + "corequisite": "" + }, + { + "moduleCode": "BL5238", + "title": "Infectious Disease Modelling", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BL5312", + "title": "Natural History Collections and Conservation", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BLD3001", + "title": "Business Leadership Case Analysis", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MNO1706/MNO1706X or PL3239) and MNO2705.", + "corequisite": "" + }, + { + "moduleCode": "BLD3002", + "title": "CEOs as Leaders", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "(MNO1706/MNO1706X or PL3239) and MNO2705.", + "corequisite": "" + }, + { + "moduleCode": "BLD3003", + "title": "Personal Leadership Development", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "(MNO1706/MNO1706X or PL3239) and MNO2705.", + "corequisite": "" + }, + { + "moduleCode": "BLD3004", + "title": "Topics in Leadership Development", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "(MNO1706/MNO1706X or PL3239) and MNO2705.", + "corequisite": "" + }, + { + "moduleCode": "BMA5001", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMS5110 Managerial Economics\nBMS5117 Game Theory for Managers", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5002", + "title": "Analytics For Managers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5003", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5004A", + "title": "Management & Organization", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5005", + "title": "Management Accounting", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMA5003", + "corequisite": "" + }, + { + "moduleCode": "BMA5008", + "title": "Financial Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5009", + "title": "Marketing Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5010A", + "title": "Managing Operations", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5011", + "title": "Macroeconomics in the Global Economy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "BMA 5001 “Managerial Economics”" + }, + { + "moduleCode": "BMA5011A", + "title": "Topics in Macroeconomics in the Global Economy", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5013", + "title": "Corporate Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5014", + "title": "Advanced Business Communications", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5016", + "title": "Leading with Impact", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5016A", + "title": "Leadership in Organizations", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5017", + "title": "Managerial Operations and Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5102", + "title": "Legal Issues in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "BMS5111", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5104", + "title": "Global Strategic Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMS5112 \nBMS5118", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5104A", + "title": "Topics in Global Strategic Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5108", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5112", + "title": "Asian Business Environments", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5112A", + "title": "Topics in Asian Business Environment", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5115", + "title": "Management of Technological Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5115A", + "title": "Topics in Management of Technological Innovation", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5118", + "title": "Special Topics in Strategy and Policy", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5118A", + "title": "Special Topics in Strategy and Policy: Sustainability Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5118B", + "title": "Strategies in Healthcare Industry An Asian Perspective on Pharma, Devices & Biotech sectors", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5119", + "title": "Family Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5120", + "title": "Current Trends in Emerging Growth Markets", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5121", + "title": "Asian Business Insights III", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5122", + "title": "Macroeconomics and Finance: Perspectives from Asia", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5122A", + "title": "Topics in Macroeconomics and Finance: Perspectives from Asia", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMA5011 Macro Economics in the Global Economy", + "corequisite": "" + }, + { + "moduleCode": "BMA5124", + "title": "Environmental and Resource Management in a Regulatory Environment", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMA5001", + "corequisite": "" + }, + { + "moduleCode": "BMA5125", + "title": "Managing Business Networks", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5126", + "title": "Strategy and Big Data", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMA5013", + "corequisite": "" + }, + { + "moduleCode": "BMA5127", + "title": "Consulting: Process, Industry and Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5128", + "title": "Venture Capital", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5128A", + "title": "Special Topics in Venture Capital", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5129", + "title": "Leading with Strategy in Digital Firms", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMA5013 Corporate Strategy", + "corequisite": "" + }, + { + "moduleCode": "BMA5129A", + "title": "Topics in Leading with Strategy in Digital Firms", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should preferably have completed a module on strategy", + "corequisite": "" + }, + { + "moduleCode": "BMA5130", + "title": "Consulting 2.0", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5131", + "title": "Micro-National Champions in the Digital Economy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5132", + "title": "Emerging Tech and the Value of Data", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5232", + "title": "Strategic Information Technology", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5232A", + "title": "Topics in Strategic Information Technology", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5235", + "title": "Transformational Service Innovations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5236", + "title": "Global Operations Strategy In The Digital Economy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5237", + "title": "Managing Global Value Chains and Networks", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5237A", + "title": "Topics in Managing Global Value Chains and Networks", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5238", + "title": "Data Monetisation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5239", + "title": "Digitization for Business Model Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5255", + "title": "Management Decision Making", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5271", + "title": "Operations Leadership: Supply Chain and Service Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5274", + "title": "Project Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300B", + "title": "Special Topics in Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300C", + "title": "Special Topics in Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300D", + "title": "Special Topics in Finance", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300E", + "title": "Special Topics in Finance", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300F", + "title": "Special Topics in Finance", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300I", + "title": "Special Topics in Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300J", + "title": "Special Topics in Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300K", + "title": "Special Topics in Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300L", + "title": "Special Topics in Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300M", + "title": "Special Topics in Finance", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5300X", + "title": "Special Topics in Finance", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5301", + "title": "International Financial Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5302", + "title": "Investment Analysis and Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5302A", + "title": "Investment Analysis & Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5303", + "title": "Financial Statement Analysis", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5307", + "title": "Options and Futures", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5307A", + "title": "Topics in Options and Futures", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5308", + "title": "Fixed Income Securities", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5309", + "title": "Fund Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5309A", + "title": "Topics in Fund Management", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5310", + "title": "Corporate Governace", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5312", + "title": "Advance Corporate Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5312A", + "title": "Topics in Advanced Corporate Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5313", + "title": "Private Equity", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMF5346 Venture Capital and Private Equity", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5313A", + "title": "Valuation and Mergers & Acquisitions", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5313C", + "title": "Topics in Valuation and Mergers & Acquisitions", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5313D", + "title": "Private Equity", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMF5346 Venture Capital and Private Equity", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5313E", + "title": "Topics in Private Equity", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5314", + "title": "Entrepreneurial Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5314A", + "title": "Entreprenuerial Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5315A", + "title": "Valuation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5316A", + "title": "Risk Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5318", + "title": "Investment Banking", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5318A", + "title": "Topics in Investment Banking", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5319", + "title": "Corporate Risk Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5319A", + "title": "Topics in Corporate Risk Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5321", + "title": "International Financial Markets", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5321A", + "title": "Topics in International Financial Markets", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5322", + "title": "Corporate Governance & Financial Policy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5323", + "title": "Applied Portfolio Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5324", + "title": "Value Investing In Asia", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5325", + "title": "International Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5326", + "title": "Selected Topics in Finance: China’s Capital Markets", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5327", + "title": "Family Business & Wealth Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5328", + "title": "Measuring and Improving Social Impact", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5330", + "title": "Topics in Finance: Trading and Investing in Commodities", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5331", + "title": "Applied Investment Valuation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "ync", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "tbc" + }, + { + "moduleCode": "BMA5332", + "title": "Financial Regulation in a Digital Age", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5333", + "title": "Inclusive FinTech", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400F", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400H", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400I", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400K", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400L", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400M", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400N", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5400P", + "title": "Special Topics in Strategy & Organization", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5404", + "title": "Entrepreneurship & Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5405", + "title": "Managing Change", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5405A", + "title": "Topics in Managing Change", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5406", + "title": "Negotiations and Conflict Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 4 + ], + "preclusion": "BMS5115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5409A", + "title": "Topics in Managerial Decision Making", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5411", + "title": "Talent Management and development", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5411A", + "title": "Topics in Talent Management in a Globalised Environment", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5412", + "title": "Global Business Leader Across Cultures", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5422", + "title": "How to Successfully Lead Your Groups and Teams", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5423", + "title": "Managing Across Borders", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5424", + "title": "Corporate Entrepreneurship and Business Model\nEvaluation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5425", + "title": "Social Entrepreneurship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5428", + "title": "Strategic Foresight", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500B", + "title": "Special Topics in Marketing", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500D", + "title": "Special Topics in Marketing", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500E", + "title": "Special Topics in Marketing", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500F", + "title": "Special Topics in Marketing", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500G", + "title": "Special Topics in Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500H", + "title": "Special Topics in Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500N", + "title": "Special Topics in Marketing", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500O", + "title": "Special Topics in Marketing", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5500X", + "title": "Special Topics in Marketing", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5501", + "title": "Competitive Marketing Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5502", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5502A", + "title": "Topics in Consumer Behaviour", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5503", + "title": "Promotional Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5503A", + "title": "Promotional Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5504", + "title": "Global Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5504A", + "title": "Topics in Global Marketing", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5505", + "title": "Services Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5506", + "title": "Product & Brand Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5509", + "title": "Marketing Strategy and Game Theory", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5511", + "title": "Strategic Pricing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5511A", + "title": "Special Topics in Channels & Pricing Strategy", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5515", + "title": "Marketing Research", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5517", + "title": "Pricing Strategies", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5523", + "title": "Customer Relationship Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5523A", + "title": "Topics in Customer Relationship Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5524", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5524A", + "title": "Topics in Marketing Analytics", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5525", + "title": "Competitive Strategies For Smes and Startups", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5526", + "title": "Ethics/ Corporate Social Responsibility", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5527", + "title": "Technology Transfer and Commercialization", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5527A", + "title": "Topics in Technology Transfer & Commercialization", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5528", + "title": "Business to Business Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5528A", + "title": "Topics in Business-to-Business Marketing", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5529", + "title": "Marketing Metrics - Measuring Marketing Performance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5529A", + "title": "Topics in Marketing Metrics-Measuring Marketing Performance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5530", + "title": "Design Thinking & Product Innovations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5530A", + "title": "Topics in Design Thinking & Business Innovation", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5531", + "title": "Sales Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5531A", + "title": "Sales Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5532", + "title": "Big Picture Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5532A", + "title": "Topics in Big Picture Marketing", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5533", + "title": "Marketing in the Digital Age", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5534", + "title": "Marketing in China", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5535", + "title": "Marketing for Entrepreneurs", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5536", + "title": "Behavioral Economics in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMS5507 Behavioral Economics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There is no specific course pre-requisite. But it is important that the student has at least a good knowledge of microeconomics and a good grasp of analytical and\nquantitative skills.", + "corequisite": "" + }, + { + "moduleCode": "BMA5702", + "title": "Advanced Independent Study in Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, the MBA student is expected to have past work experience in asset / financial management and/or completed the core finance modules of the MBA curriculum.", + "corequisite": "Vary according to project topic." + }, + { + "moduleCode": "BMA5801", + "title": "Launch Your Transformation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5802", + "title": "MBA Survival Kit", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMA5801 Management Communication", + "corequisite": "" + }, + { + "moduleCode": "BMA5803", + "title": "C-Suite Life", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5901", + "title": "MBA Consulting Project", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5902", + "title": "Entrepreneurship Practicum", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMA5903", + "title": "MBA Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed at least one semester of MBA programme", + "corequisite": "" + }, + { + "moduleCode": "BMA5904A", + "title": "ENTREPRENEURSHIP STUDY MISSION – Silicon Valley, USA", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5001A", + "title": "Leadership", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5001B", + "title": "Managerial Skills", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5002A", + "title": "Corporate Strategy", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5002B", + "title": "Contemporary Issues in Strategy", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5003A", + "title": "Decision Making", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5003B", + "title": "Information Management", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5004A", + "title": "Managerial Economics", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5004B", + "title": "Asian Markets and Industries", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5005A", + "title": "International Business", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5005B", + "title": "International Business Law", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5006A", + "title": "Marketing Management", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5006B", + "title": "Contemporary Issues in Marketing", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5007A", + "title": "Accounting", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5007B", + "title": "Financial Management", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5008A", + "title": "Organizational Behavior and Human Resource Management", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5008B", + "title": "Contemporary Issues in Human Resouce Managment and Organuzational Behavior", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5009A", + "title": "Systems & Operations Management", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5009B", + "title": "Supply Chain Management", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5010A", + "title": "Corporate Finance", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5010B", + "title": "Corporate Governance", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5011A", + "title": "Contemporary Issues in Business 1", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5011B", + "title": "Contemporary Issues in Business 2", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5012", + "title": "Advanced Study Project", + "moduleCredit": 6, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5012A", + "title": "Economic analysis for managers", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5012B", + "title": "Special topics", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5021", + "title": "Leadership: exploration, assessment & development", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5022", + "title": "Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "BMC5023", + "title": "Business analytics and decision making", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "BMC5024", + "title": "Asia and global economy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5025", + "title": "International business and internationalisation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5026", + "title": "Marketing strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5027", + "title": "Accounting and information management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5028", + "title": "Managing human capital", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "NL", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NL", + "corequisite": "NL" + }, + { + "moduleCode": "BMC5029", + "title": "Value chains, logistics and operations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5030", + "title": "Governance and sustainable business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5031", + "title": "Technology, innovation and entrepreneurship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "N.A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A", + "corequisite": "N.A" + }, + { + "moduleCode": "BMC5032", + "title": "Economic analysis for managers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5033", + "title": "Managing creativity and innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "BMC5034", + "title": "Special topics 1: Technology and business frontiers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "N.A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A", + "corequisite": "N.A" + }, + { + "moduleCode": "BMC5035", + "title": "Special topics 2", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035A", + "title": "Special topics 2A", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035B", + "title": "Special topics 2B", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035C", + "title": "Special topics 2C", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035D", + "title": "Special topics 2D", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035E", + "title": "Business Consultation Project on Change Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035F", + "title": "Digital Transformation and Intelligent Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5035G", + "title": "Current Topics in Economics and Finance", + "moduleCredit": 1, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMC5036", + "title": "Corporate finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "BMC5037", + "title": "Financial management and markets", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "BMC5038", + "title": "Managing organizations and change", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5001", + "title": "Leadership", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5002", + "title": "Corporate Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5003", + "title": "Business Analytics for Decision Makers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5004", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5006", + "title": "Strategic Marketing and Brand Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5007", + "title": "Accounting", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5008", + "title": "Power, Politics, and Influence", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5009", + "title": "Strategic Operations Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5010", + "title": "Management of Technology and Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5011", + "title": "Services Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5012", + "title": "Scenario Planning", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5014", + "title": "Legal Issues in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5015", + "title": "Macroeconomics and International Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5016", + "title": "Management Practicum", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no prerequisites though individual instructors may choose to impose pre-requisites based on the skills needed to complete a specific project.", + "corequisite": "" + }, + { + "moduleCode": "BME5018", + "title": "Managing Business For Sustainability", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5019", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5020", + "title": "Entrepreneurship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5021", + "title": "Corporate Governance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5022", + "title": "Business Strategy Simulation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5033", + "title": "Leadership: Exploration, Assessment & Development", + "moduleCredit": 0, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5040", + "title": "Business Analytics and Decision Making", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5041", + "title": "Value Chains, Logistics and Operations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5042", + "title": "Accounting and Information Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5043", + "title": "Financial Management and Markets", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 3 + ], + "preclusion": "BME5019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5044", + "title": "Communications, Influence and Negotiations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5045", + "title": "Leadership: Exploration, Assessment & Development", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 3 + ], + "preclusion": "BME5033 Leadership: Exploration, Assessment & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5046", + "title": "Managing Organisations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BME5045: Leadership: Exploration, Assessment and Development\n\nThe pre-requisite is applicable to all students except for late admittances. NUS Business School Graduate Studies Office Vice-Dean/Academic Director/Programme Office/instructor of this module has the discretion to waive this requirement on a case-by-case basis.", + "corequisite": "" + }, + { + "moduleCode": "BME5047", + "title": "Managing Change and Disruption", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5048", + "title": "Managing Human Capital", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5049", + "title": "Marketing Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5050", + "title": "Asia and the Global Economy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5051", + "title": "Economic Analysis for Managers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5052", + "title": "Governance and Sustainability Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5053", + "title": "International Business and Internationalisation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5054", + "title": "Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5055", + "title": "Technology, Innovation and Entrepreneurship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5056", + "title": "EMBA Special Topics 1", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5056A", + "title": "Special Topic 1A", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5056B", + "title": "Special Topic 1B", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5057", + "title": "EMBA Special Topics 2", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5057A", + "title": "Special Topic 2A", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BME5057B", + "title": "Special Topic 2B", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5321", + "title": "Financial Modelling", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5322", + "title": "Introduction to Finance", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5323", + "title": "Accounting for Finance Professionals", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5324", + "title": "Statistics and Analytics in Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5331", + "title": "Applied Corporate Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5322 Introduction to Finance", + "corequisite": "" + }, + { + "moduleCode": "BMF5332", + "title": "Foundation of Investments", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5322 Introduction to Finance", + "corequisite": "" + }, + { + "moduleCode": "BMF5333", + "title": "Options and Fixed Income", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5322 Introduction to Finance", + "corequisite": "" + }, + { + "moduleCode": "BMF5334", + "title": "International Finance and Economics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5322 Introduction to Finance", + "corequisite": "" + }, + { + "moduleCode": "BMF5341A", + "title": "Advanced Investment Strategies", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5332", + "corequisite": "" + }, + { + "moduleCode": "BMF5341B", + "title": "Applied Investment Strategies", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5341A", + "corequisite": "" + }, + { + "moduleCode": "BMF5342", + "title": "Technological Disruptions in Finance and Data Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "- FIN4124\n- FIN4719", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5322 Introduction to Finance", + "corequisite": "" + }, + { + "moduleCode": "BMF5343", + "title": "Banks and Non-Traditional Financial Intermediaries", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5329 for Banking and Financial Intermediation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5344", + "title": "Financial Statement Analysis and Value Investing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF 5322 Introduction to Finance\nBMF 5323 Accounting for Finance Professionals", + "corequisite": "" + }, + { + "moduleCode": "BMF5345", + "title": "Analytical Portfolio Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4112K", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5332, BMF5333", + "corequisite": "" + }, + { + "moduleCode": "BMF5346", + "title": "Venture Capital and Private Equity", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5313\nBMA5313D\nBMS5113\nBMS5304", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5351", + "title": "Household Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5322\nBMF5332", + "corequisite": "" + }, + { + "moduleCode": "BMF5352", + "title": "Advanced Applied Portfolio Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN4115 Advanced Portfolio Mgt\nFIN4713 Advanced Portfolio Mgt\nBMA5323 Applied Portfolio Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5332 Foundation of Investments", + "corequisite": "" + }, + { + "moduleCode": "BMF5353", + "title": "Applied Investment Strategies", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMF5341B Applied Investment Strategies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF5332 Foundation of Investments", + "corequisite": "" + }, + { + "moduleCode": "BMF5354", + "title": "Financial Regulation in a Digital Age", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5332 Financial Regulation in a Digital Age", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5355", + "title": "Financial Institutions, Markets, Systems and Technology", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3103/FIN3703\nBMS5307", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5356", + "title": "Applied Financial Risk Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3118 Financial Risk Management\nFIN3714 Financial Risk Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMF 5332 Foundation of Investments\nBMF 5333 Fixed Income and Options", + "corequisite": "" + }, + { + "moduleCode": "BMF5391A", + "title": "Experiential Learning: Individual Internship", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5391B", + "title": "Experiential Learning: Applied Team Project", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5391C", + "title": "Experiential Learning: Applied Faculty Project", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMF5392", + "title": "Financial Sector in the Post-Pandemic Era", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMF5391A Individual Internship\nBMF5391B Applied Team Project\nBMF5391C Applied Faculty Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5002", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT4415C Applied Market Research", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any introductory course on Marketing", + "corequisite": "" + }, + { + "moduleCode": "BMK5100", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT4420/MKT4812 Marketing Analytics\nBMA5524 Marketing Analytics\nBMS5512 Marketing Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5101", + "title": "Digital Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5102", + "title": "Big Data in Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5103", + "title": "Consumer Insights", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5104", + "title": "Market Analytics Visualisation and Communications", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5200", + "title": "Pricing Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5201", + "title": "Customer Relationship Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5202", + "title": "Python Programming for Business Analytics", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5203", + "title": "Research for Marketing Insights", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3427/MKT3722 Research for Marketing Insights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5300A", + "title": "Experiential Learning: Industry Internship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5300B", + "title": "Experiential Learning: Marketing Analytics Project", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK5300C", + "title": "Experiential Learning: Applied Faculty Project", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6100", + "title": "Proseminar in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6101", + "title": "Marketing Seminar: Perspectives in Consumer Behavior", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6102", + "title": "Marketing Seminar: Consumer Information Processing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6104", + "title": "Marketing Seminar: Marketing Theory & Research", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6105", + "title": "Independent Study: Subjective Expertise and Decision Making", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6105J", + "title": "ISM: Technology and implications on Judgement and Decision-Making", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6106", + "title": "Empirical Modeling in Marketing (I)", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6107", + "title": "Empirical Modelling in Marketing (II)", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6110", + "title": "Special Topics in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6111", + "title": "Special Topics in Marketing", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6111O", + "title": "Marketing Strategy", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6111P", + "title": "Field Experiments and Behavioral Economics with Business Applications", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6111Q", + "title": "Judgment and Decision Making for Marketing Researchers", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMK6111R", + "title": "Behavioral Aspects of Pricing", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5001", + "title": "Leadership and Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5002", + "title": "Asia-Pacific Economic and Business Environment", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5003", + "title": "Business Finance & Growth Economics for Policy Makers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5101", + "title": "Judgment and Decision-Making for Modern Policy Makers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5103", + "title": "Capital Markets, Governance and Regulation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5104", + "title": "Knowledge-based Economy and Intellectual Property Management", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMM5105", + "title": "Real Estate Fundamentals and City Planning", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO5001", + "title": "Managing Across Cultures", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6006Y", + "title": "Independent Study: Special Topics in Workplace Secrecy", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6006Z", + "title": "Independent Study: Special Topics in Mindfulness", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6010A", + "title": "Organizational Behavior Seminar: Leadership", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6011A", + "title": "Organizational Behavior Seminar: Work, employee and organizational well-being", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6012A", + "title": "Organizational Behavior Seminar: Interpersonal Relations", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6013A", + "title": "Organizational Behavior Seminar: Motivation and Work Behavior", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6014A", + "title": "Organizational Behavior Seminar: Social Capital Theory & Methods", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6015A", + "title": "Organizational Behavior Seminar: Entrepreneurship and Innovation", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6016A", + "title": "Human Resource Management Seminar: Foundations", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6017A", + "title": "Human Resource Management Seminar: Challenges", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6018", + "title": "Visioning and Science Fiction in Strategic Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6018A", + "title": "Behavorial Ethics", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6019", + "title": "Qualitative Methods for Future Images of Organizations", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMO6019A", + "title": "Organizational Citizenship Behavior: An Emphasis on Theory Development", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-requisite is standing as a PhD student in management and organisation.", + "corequisite": "" + }, + { + "moduleCode": "BMO6020A", + "title": "Independent Study: Use of AI in Training & Development", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "BMS5101", + "title": "Independent Study in Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5103", + "title": "Entrepreneurial Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5104", + "title": "Current Trends in Growth Markets", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5105", + "title": "Big Data and Business Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5106", + "title": "Global Firm Strategy: Emphasis on Asia", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5107", + "title": "Ethical Leadership and Corporate Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5108", + "title": "Macroeconomics and Finance: Perspectives from Asia", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "None, but knowledge of intermediate macroeconomics is strongly recommended", + "corequisite": "" + }, + { + "moduleCode": "BMS5109", + "title": "Strategy: Bridging the Planning – Implementation Divide", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Strategic Management, Corporate Strategy or equivalent course.", + "corequisite": "" + }, + { + "moduleCode": "BMS5110", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5001\nEC3312\nMKT3513\nMKT3812\nMA4264", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5111", + "title": "Legal Issues in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMA5102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5112", + "title": "Global Strategic Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BBP5000\nBMS5118\nBMA5104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5113", + "title": "Venture Capital", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMA5128, BMP5001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5114", + "title": "Asian Business Environment", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BSP2005, BMA5128, BMP5002", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5115", + "title": "Strategic Negotiations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "- MNO3702/MNO3322\n- BMA5406", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5116", + "title": "People Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5117", + "title": "Game Theory For Managers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5001\nEC3312\nMKT3513\nMKT3812\nMA4264", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5118", + "title": "Competing Globally", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMS5112 Global Strategic Management\nBMA5104 Global Strategic Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5119", + "title": "Asian Family Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5201", + "title": "Independent Study in Decision Science", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5202", + "title": "Global Supply Chain Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "DSC5211A Supply Chain Coordintaion and Risk Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5203", + "title": "The Knowledge & Innovation Economy 4.0", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5204", + "title": "Cross-Border Business Management in the Digital Age", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5205", + "title": "Business Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5002 Analytics for Managers", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5206", + "title": "Business Analytics with R", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5207", + "title": "Service Design", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "DOS4714 Service Design\nDSC4211G SIOSCM: Service Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5301", + "title": "Independent Study in Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5302", + "title": "International Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004/FIN2004X Finance", + "corequisite": "" + }, + { + "moduleCode": "BMS5303", + "title": "Valuation and Mergers & Acquisitions", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4116 Valuation and Mergers & Acquisitions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004/ FIN2004X Finance or an equivalent course on Finance.", + "corequisite": "" + }, + { + "moduleCode": "BMS5304", + "title": "Selected Topics in Finance: Private Equity", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMA5313 Selected Topics in Finance: Private Equity", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Introduction to Financial Accounting:\n- Understanding and Analysis of Financial Statements (P&L, Balance Sheet, Cashflow, Financial Ratios)\n- Knowledge of Financial Concepts ( Time Value of Money, Free Cashflow, Cost of Capital)\n- Share Capitalisation", + "corequisite": "" + }, + { + "moduleCode": "BMS5305", + "title": "Entrepreneurial Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMA5314", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic Financial Management\nBasic Financial Accounting", + "corequisite": "" + }, + { + "moduleCode": "BMS5306", + "title": "International Financial Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN3115, BMA5301, BMF5334", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Highly recommended that students have completed undergraduate‐level Calculus,\nIntroduction to Microeconomics and Introduction to Macroeconomics.", + "corequisite": "" + }, + { + "moduleCode": "BMS5307", + "title": "Financial Markets and Institutions", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3103, FIN3701", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must at least have a basic understanding of what\na balance sheet (i.e. statement of financial position) is, the\ntime value of money, basic stock pricing (dividend\ndiscounting), basic bond pricing (coupon discounting), and\nwhat a financial option is.", + "corequisite": "" + }, + { + "moduleCode": "BMS5308", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4113 / FIN4713", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Understanding of time value of money, financial statements, risk and return, basic statistics and regression analysis", + "corequisite": "" + }, + { + "moduleCode": "BMS5309", + "title": "Investment Banking", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4112F, FIN4112H, BMA5318", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Corporate Finance/Finance/ Financial Markets/Investments and Portfolio Management course or comparable knowledge and skills. The contents covered during the course are not technical in nature. Exemptions from pre-requisites may be considered on a case-by-case basis.", + "corequisite": "" + }, + { + "moduleCode": "BMS5310", + "title": "Financial Management of Family Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN4112L, BMF5001, BMA5327", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5311", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMA5008 Financial Management\nECA5334 Corporate Finance\nFIN2004/X Finance\nFIN2704/X Finance\nFIN3101 Corporate Finance\nFIN3101A Corporate Finance\nFIN3101B Corporate Finance\nFIN3701A Corporate Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5312", + "title": "Fintech Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4123 Fintech Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Business Analytics, Corporate Finance", + "corequisite": "" + }, + { + "moduleCode": "BMS5401", + "title": "Independent Study in Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5402", + "title": "Special Topics in Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5403", + "title": "Global Management Practice", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5404", + "title": "Becoming Future Prepared Global Leaders", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5405", + "title": "New Venture Creation Practicum: Lean Startup Method", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMS5902", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5405S", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMS5405, TR3002, BSN3702", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5406", + "title": "Asian Leadership", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMA5420 Leadership in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5407", + "title": "Workplace and Corporate Deviance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMO5003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO 1001: Management & Organization (preferably but not necessary)", + "corequisite": "" + }, + { + "moduleCode": "BMS5408", + "title": "Special Topics in Organizational Behavior", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMO5004", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5409", + "title": "Principles of Multinational Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMS5403, MNO3334, MNO3716", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5410", + "title": "Negotiation and Conflict Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMS5115 Strategic Negotiations\nBMA5406 Negotiations and Conflict Management\nMNO3702 Negotiation and Conflict Management\nMNO3322 Negotiations and Bargaining", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5501", + "title": "Independent Study in Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5502", + "title": "Marketing Practice & Impact", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMA5532 Big Picture Marketing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "It is advisable that students signing up for this module have taken Marketing 101 as understanding of basic marketing concepts and theories are assumed with lecture and discussions build upon basic marketing knowledge. \n\nStudents who have had meaningful work or internship experience in a Sales or Marketing team of a consumer oriented business would have an advantage in understanding the concepts taught in this module. And students who aim to pursue a Marketing career will benefit\nmost from the opportunity to transform Marketing Practice into real career Impact.", + "corequisite": "" + }, + { + "moduleCode": "BMS5502A", + "title": "Marketing Practice & Impact", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMA5532 Big Picture Marketing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "It is advisable that students signing up for this module have taken Marketing 101 as understanding of basic marketing concepts and theories are assumed with lecture and discussions build upon basic marketing knowledge.", + "corequisite": "" + }, + { + "moduleCode": "BMS5503", + "title": "Pricing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT4413, MKT4811", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Prior exposure to Marketing, Econometrics and Data Analytics will be useful but not absolutely necessary.", + "corequisite": "" + }, + { + "moduleCode": "BMS5504", + "title": "Marketing Analysis and Decision Making", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3421 Marketing Analysis and Decision Making", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5505", + "title": "Marketing in the Digital Age", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT3415, MKT3714, BMA5533", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5506", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT3402, MKT3402A, MKT3402B, MKT3402C, MKT3402D, MKT3702, MKT3702A, MKT3702B, MKT3702C, MKT3702D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5507", + "title": "Behavioral Economics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMA5536\nBMK5003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A good knowledge of microeconomics and a good grasp of analytical and quantitative skills.", + "corequisite": "" + }, + { + "moduleCode": "BMS5508", + "title": "Design Thinking & Business Innovations", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5530, BMK5004", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5509", + "title": "Consumer Culture Theory", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3423, MKT4418, MKT4716, BMK5006", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Helpful to have taken a Consumer Behaviour class", + "corequisite": "" + }, + { + "moduleCode": "BMS5510", + "title": "Marketing Strategies in the New Economy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Principles of Marketing or comparable Basic Marketing module", + "corequisite": "" + }, + { + "moduleCode": "BMS5511", + "title": "Sustainability Marketing", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Principles of Marketing or comparable Basic\nMarketing module", + "corequisite": "" + }, + { + "moduleCode": "BMS5512", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMK5100, BMA5524", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5513", + "title": "Product Development & Brand Management", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMA5506 Product & Brand Management\nMKT3418 Product and Brand Management\nMKT3717 Product & Brand Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5514", + "title": "Marketing Strategies for a VUCA World", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMS5510 Marketing Strategies in the New Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Prior knowledge of marketing concepts and tools (i.e., completion of an equivalent to an introductory marketing module)", + "corequisite": "" + }, + { + "moduleCode": "BMS5601", + "title": "Independent Study in Accounting", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5602", + "title": "Business Analysis and Valuation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN3113, ACC5001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must have completed modules on introductory accounting and introductory finance.", + "corequisite": "" + }, + { + "moduleCode": "BMS5701", + "title": "Independent Study in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5702", + "title": "Special Topics in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5702A", + "title": "Asian Management and Leadership: Learning From Zheng He", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5702B", + "title": "Managing Business Networks", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5801", + "title": "Communication and Influencing Skills for Managers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5900", + "title": "Block Seminar (with emphasis on Asian context)", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMO5000", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5900A", + "title": "Sustainability Thinking in Product and Service Design", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BMS5900", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5901", + "title": "Business Project", + "moduleCredit": 10, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BMO5002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMS5902", + "title": "Entrepreneurship Practicum", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BMA5902, BMS5405", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5001", + "title": "Leadership & Managerial Skills", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5002", + "title": "Macroeconomics & International Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5003", + "title": "Economic Analysis For Managers", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5004", + "title": "Macroeconomics and International Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5006", + "title": "Marketing Strategy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5007", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5008", + "title": "Corporate Governance, Business Law & Ethics", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5013", + "title": "International Management Strategies", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5014", + "title": "Contemporary Issues in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5015", + "title": "Competitive Strategy & Business Policy", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5017", + "title": "Management Practicum", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BMU5018", + "title": "Entrepreneurship and New Venture Creation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN1101", + "title": "Engineering Principles and Practice I", + "moduleCredit": 6, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN1102", + "title": "Engineering Principles and Practice II", + "moduleCredit": 6, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN1111", + "title": "Biomedical Engineering Principles and Practice I", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "BN1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2001", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2102", + "title": "Bioengineering Data Analysis", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2103", + "title": "Bioengineering Design Workshop", + "moduleCredit": 2, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Stage 1 & 2 Bioengineering Students", + "corequisite": "" + }, + { + "moduleCode": "BN2111", + "title": "Biomedical Engineering Principles and Practice II", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "BN1102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2201", + "title": "Quantitative Physiology for Bioengineers", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "DY103 Physiology, LSM3212 Human Physiology, PY1105 Physiology I, PY1106 Physiology II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BIE Stage 2 standing", + "corequisite": "" + }, + { + "moduleCode": "BN2202", + "title": "Introduction to Biotransport", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2202S", + "title": "Introduction to Biotransport", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "BN2101S", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BIE Stage 2 standing and Engineering students doing Minor in Bioengineering", + "corequisite": "" + }, + { + "moduleCode": "BN2203", + "title": "Introduction to Bioengineering Design", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BIE Stage 2 standing", + "corequisite": "" + }, + { + "moduleCode": "BN2204", + "title": "Fundamentals of Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EG1109/EG1109M Statics and Mechanics of Materials", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2301", + "title": "Biochemistry and Biomaterials for Bioengineers", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "LSM1401 Fundamentals of Biochemistry", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN2401", + "title": "Biosignals Processing", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE2023 Signals and Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1506 Mathematics II", + "corequisite": "" + }, + { + "moduleCode": "BN2402", + "title": "Fundamentals of Bioinstrumentation", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1108 Electrical Engineering", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1432 Physics IIE", + "corequisite": "" + }, + { + "moduleCode": "BN2403", + "title": "Fundamentals of Biosignals and Bioinstrumentation", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EG1108 Electrical Engineering", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN3101", + "title": "Biomedical Engineering Design", + "moduleCredit": 6, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN3201", + "title": "Introduction To Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109/CE1109/CE1109X", + "corequisite": "" + }, + { + "moduleCode": "BN3202", + "title": "Musculoskeletal Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "BN3201 Introduction to Biomechanics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BN2204 Fundamentals of Biomechanics", + "corequisite": "" + }, + { + "moduleCode": "BN3301", + "title": "Introduction To Biomaterials", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CM1121 or CM1501) plus (LSM1101 or LSM1401 or MLE1101)] or MLE3104", + "corequisite": "" + }, + { + "moduleCode": "BN3401", + "title": "Biomedical Electronics & Systems", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "Students from the Dept of Electrical and Computer Engineering", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BN2402 Fundamentals of Bioinstrumentation", + "corequisite": "" + }, + { + "moduleCode": "BN3402", + "title": "Bio-Analytical Methods In Bioengineering", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CM1121 or CM1501) and (LSM1101 or LSM1401)", + "corequisite": "" + }, + { + "moduleCode": "BN3501", + "title": "Equilibrium and Kinetic Bioprocesses", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1506, PC1432, CN2122, ME2134 or BN2202", + "corequisite": "" + }, + { + "moduleCode": "BN4101", + "title": "B.Eng. Dissertation", + "moduleCredit": 8, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "BN4101R", + "title": "B.Eng. Dissertation", + "moduleCredit": 12, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "BN4102", + "title": "Gerontechnology in Ageing", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN4103", + "title": "Assistive Technology for Persons with Disability", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN4109", + "title": "Special Topic In Bioengineering", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "BN4201", + "title": "Tissue Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BN2204 Fundamentals of Biomechanics", + "corequisite": "" + }, + { + "moduleCode": "BN4202", + "title": "Biofluids Dynamics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Either CN2122 or ME2134 or BN2202", + "corequisite": "" + }, + { + "moduleCode": "BN4203", + "title": "Robotics in Rehabilitation", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN4301", + "title": "Principles Of Tissue Engineering", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BN3301", + "corequisite": "" + }, + { + "moduleCode": "BN4402", + "title": "Electrophysiology", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN4403", + "title": "Cellular Bioengineering", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2103", + "corequisite": "" + }, + { + "moduleCode": "BN4404", + "title": "Bioelectromechanical Systems - Biomems", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Stage 3 & 4 Engineering students", + "corequisite": "" + }, + { + "moduleCode": "BN4406", + "title": "Biophotonics And Bioimaging", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BN2401", + "corequisite": "" + }, + { + "moduleCode": "BN4501", + "title": "Engineering Biology", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505 Mathematics I, MA1506 Mathematics II, LSM1401 Fundamentals of Biochemistry", + "corequisite": "" + }, + { + "moduleCode": "BN4601", + "title": "Intelligent Medical Robotics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5101", + "title": "Biomedical Engineering Systems", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5102", + "title": "Clinical Instrumentation", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5104", + "title": "Quantitative Physiology Principles in Bioengineering", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5201", + "title": "Advanced Biomaterials", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Basic materials science and engineering.", + "corequisite": "" + }, + { + "moduleCode": "BN5202", + "title": "Advanced Tissue Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5203", + "title": "Advanced Tissue Engineering", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5205", + "title": "Computational Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5207", + "title": "Medical Imaging Systems", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MDG5225 Fundamentals of Molecular Imaging", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5208", + "title": "Biomedical Quality and Regulatory Systems", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "Graduate level Physics or BN5401 or consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "BN5209", + "title": "Neurosensors and Signal Processing", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5210", + "title": "Biosensors and Biochips", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5501", + "title": "The Singapore-Stanford Biodesign Process", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate students enrolled in Engineering and Business\nfaculties", + "corequisite": "" + }, + { + "moduleCode": "BN5511", + "title": "Introduction to Global Medical Device Regulation", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5512", + "title": "Medical Device Regulation in the US and EU", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5513", + "title": "Medical Device Regulation in ASEAN and AsiaPacific", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5514", + "title": "Medical Device Regulatory Process Strategy and Planning", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5515", + "title": "Clinical Design and Evaluation of Medical Devices", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5516", + "title": "Medical Device Design, Development and Testing", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5517", + "title": "Pre-Market Requirements and Post Market Surveillance", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5518", + "title": "Next-Generation Device Regulations", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BN6202", + "title": "Advanced Human Motion Biomechanics", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate student standing", + "corequisite": "" + }, + { + "moduleCode": "BN6209", + "title": "Neurotechnology", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate student standing", + "corequisite": "" + }, + { + "moduleCode": "BN6401", + "title": "Advanced Quantitative Fluorescence Microscopy", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate student standing", + "corequisite": "" + }, + { + "moduleCode": "BN6402", + "title": "Advanced Electrophysiology", + "moduleCredit": 4, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate student standing", + "corequisite": "" + }, + { + "moduleCode": "BN6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPM1701", + "title": "Calculus and Statistics", + "moduleCredit": 0, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPM1702", + "title": "Microsoft Excel and PowerPoint for Business", + "moduleCredit": 0, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPM1705", + "title": "Understanding How Business Works", + "moduleCredit": 0, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5000", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5111", + "title": "Integrated Building Design", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Students who have taken BPS5101 not able to take BPS5111", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5112", + "title": "Green Building Integration and Evaluation Studio", + "moduleCredit": 8, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5221", + "title": "Microclimate Design", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Students who have taken BPS5102 not able to take BPS5221", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5222", + "title": "Indoor Environmental Quality", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "Students who have taken BPS5201 or BPS5202 not able to take BPS5222", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5223", + "title": "Building Energy Performance - Passive Systems", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Students who have taken BPS5204 not able to take BPS5223", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5224", + "title": "Building Energy Performance - Active Systems", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Students who have taken BPS5204 not able to take BPS5224", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5225", + "title": "Building Energy Audit and Performance Measurement and Verification", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5226", + "title": "Smart Buildings and Facilities", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5227", + "title": "Maintainability and Green Facilities Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Students who have taken BPS5205 not able to take BPS5227", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5228", + "title": "Advanced Building Materials and Structures", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5229", + "title": "Data Science for the Built Environment", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BPS5300", + "title": "Topics in Building Performance and Sustainability", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BRP6551", + "title": "Graduate Research Seminar 1", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BRP6552", + "title": "Graduate Research Seminar 2", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BS5770", + "title": "Graduate Seminar", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BS6000", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BS6001", + "title": "Advanced Indoor Air Quality", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BS6770", + "title": "Phd Seminar", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSE3701", + "title": "Macroeconomic Principles in the Global Economy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "EC2102; BSP2001.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(BSP1703 or BSP1707 or EC1301) and BSP2701.", + "corequisite": "" + }, + { + "moduleCode": "BSE3702", + "title": "Economics of Strategy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1703 or BSP1707 or EC1101E or EC1301 or EC2101.", + "corequisite": "" + }, + { + "moduleCode": "BSE3703", + "title": "Econometrics for Business I", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "RE3801 ; EC2303; EC3303.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1703 or BSP1707 or EC1101E or EC1301.", + "corequisite": "" + }, + { + "moduleCode": "BSE3711", + "title": "Strategic Thinking: Economic Applications", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "EC3312", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1005 Managerial Economics or BSP1707 Managerial Economics", + "corequisite": "" + }, + { + "moduleCode": "BSE3751", + "title": "Independent Study in Business Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "BSE4711", + "title": "Econometrics for Business II", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "EC2303; EC3303; EC3304; EC4305; BSP4513.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1703 or BSP1707 or EC1101E or EC1301 or IS3240.", + "corequisite": "" + }, + { + "moduleCode": "BSE4712", + "title": "Economics of Organization", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1703 or BSP1707 or EC2101", + "corequisite": "" + }, + { + "moduleCode": "BSE4751", + "title": "Advanced Independent Study in Business Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "BSM3001", + "title": "Social Business Mission", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3701", + "title": "Technological Innovation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IS3251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3701A", + "title": "Technological Innovation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "IS3251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3701B", + "title": "Technological Innovation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "IS3251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3702", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3702X", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3703", + "title": "Entrepreneurial Strategy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3711", + "title": "The Entrepreneurial Ecosystem in Singapore & SE Asia", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3515", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3712", + "title": "Innovation and Intellectual Property", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3713", + "title": "Entrepreneurial Boot Camp", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3714", + "title": "Co-Creating Value (Tools for Collaborative Innovation)", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) BSP1703 Managerial Economics or BSP1707 Managerial Economics: Exposure\n(2) BSP2701 Global Economy\n(3) MNO1706 Organisational Behaviour", + "corequisite": "" + }, + { + "moduleCode": "BSN3715", + "title": "Digital Strategy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1)BSP1703 Managerial Economics or BSP1707 Managerial Economics: Exposure\n(2)BSP2701 Global Economy", + "corequisite": "" + }, + { + "moduleCode": "BSN3716", + "title": "360-Degree Business Innovation Strategy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN3751", + "title": "Independent Study in Innovation & Entrepreneurship", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "Depend on the subject matter.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depend on the subject matter.", + "corequisite": "Depend on the subject matter." + }, + { + "moduleCode": "BSN3811", + "title": "People Strategy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSN4711", + "title": "Product Validation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) BSP1702 Legal Environment of Business\n(2) BSP1703 Managerial Economics; or BSP1707 Managerial Economics: Exposure\n(3) BSP2701 Global Economy", + "corequisite": "" + }, + { + "moduleCode": "BSN4751", + "title": "Adv Independent Study in Innovation & Entrepreneurship", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "Depend on the subject matter.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depend on the subject matter.", + "corequisite": "Depend on the subject matter." + }, + { + "moduleCode": "BSN4811", + "title": "Innovation and Productivity", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BSS4003A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(BSP1703 or BSP1707 or EC1101E or EC1301) and (DAO2702 or EC2303).", + "corequisite": "" + }, + { + "moduleCode": "BSN4811A", + "title": "Innovation and Productivity (with Econometrics)", + "moduleCredit": 5, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BSN4811 Innovation and Productivity\n(BSS4003A Innovation and Productivity – for student\nintake cohorts in AY2016/17 or earlier)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC3303 Econometrics I; or\nBSE3703 Econometrics for Business I; or\nBSP4513 Econometrics: Theory and Practical Business Applications; or\nST3131 Regression Analysis;\n(or equivalent to any of the above prerequisite modules).", + "corequisite": "" + }, + { + "moduleCode": "BSP1004", + "title": "Legal Environment Of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "SSB2212 or BH1004 or BZ1004 or BK1006 or GEK1009 or GEM1009k or SSD1203 or BSP1004A or BSP1004B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1004A", + "title": "Legal Environment of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "SSB2212, BH1004 or BZ1004 or BK1006 or GEK1009 or GEM1009k, SSD1203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1004B", + "title": "Legal Environment of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "SSD1203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1004X", + "title": "Legal Environment Of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "SSB2212 or BH1004 or BZ1004 or BK1006 or GEK1009 or GEM1009k or SSD1203 or BSP1004A or BSP1004B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1005", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH1005 or BZ1006 or BK1008 or All Econs major students.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1005A", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Economics Major or\nBH1005 or BZ1006 or BK1008 or EC1101 or EC1101E or EC1310 or EC1301 or EC2101 or EC3101 or BSP1005/BSP1005B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1005B", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Economics Major or\nBH1005 or BZ1006 or BK1008 or EC1101 or EC1101E or EC1310 or EC1301 or EC2101 or EC3101 or BSP1005/BSP1005A", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1005X", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH1005 or BZ1006 or BK1008 or All Econs major students.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1702", + "title": "Legal Environment of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP1004; BSP1004X; RE1703", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1702X", + "title": "Legal Environment of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP1004; BSP1004X; RE1703", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1703", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP1005; EC2101; EC1101E; EC1301; All Econs Major Students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1703X", + "title": "Managerial Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP1005; EC2101; EC1101E; EC1301; All Econs Major Students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1707", + "title": "Managerial Economics: Exposure", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BSP1005, BSP1703", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1707A", + "title": "Managerial Economics: Exposure", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP1707B", + "title": "Managerial Economics: Exposure", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP2001", + "title": "Macro And International Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "(BH2001 or BZ2001 or EC1101 or EC1101E or EC1310 or EC1301 or EC3341 or EC4102 or All Econs major students) and All BBA(Acc) students. EC2102.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1005 or BH1005 or BZ1006 or BK1008", + "corequisite": "" + }, + { + "moduleCode": "BSP2005", + "title": "Asian Business Environments", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH2005 or BZ2005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP2001", + "corequisite": "" + }, + { + "moduleCode": "BSP2009", + "title": "Entrepreneurship", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP2011", + "title": "Asian Business Environments", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP2005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(BSP1703 or BSP1707 or EC1101E or EC1301) and BSP2701.", + "corequisite": "" + }, + { + "moduleCode": "BSP2701", + "title": "Global Economy", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1703 or BSP1707 or EC1101E or EC1301.", + "corequisite": "" + }, + { + "moduleCode": "BSP3001", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3001A or BSP3001B or BSP3001C or BSP3001D or BSP3001E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All foundation modules", + "corequisite": "" + }, + { + "moduleCode": "BSP3001A", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP3001 or BSP3001B or BSP3001C or BSP3001D or BSP3001E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All foundation modules", + "corequisite": "" + }, + { + "moduleCode": "BSP3001B", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP3001 or BSP3001A or BSP3001C or BSP3001D or BSP3001E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All foundation modules", + "corequisite": "" + }, + { + "moduleCode": "BSP3001C", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP3001 or BSP3001A or BSP3001B or BSP3001D or BSP3001E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All level 1000 and 2000 foundation modules", + "corequisite": "" + }, + { + "moduleCode": "BSP3001D", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP3011", + "title": "Family Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3513", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP3012", + "title": "Singapore and ASEAN: Geoeconomics and Geopolitics for Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3516", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(BSP1703 or BSP1707 or EC1101E or EC1301) and BSP2701.", + "corequisite": "" + }, + { + "moduleCode": "BSP3511", + "title": "Corporate Law and Finance", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP3513", + "title": "Family Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP3514A", + "title": "TISA: Business Case Analysis", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP3001", + "corequisite": "" + }, + { + "moduleCode": "BSP3515", + "title": "The Entrepreneurial Ecosystem in Singapore and SE Asia", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BSP3516", + "title": "S'pore & ASEAN: Geoeconomics & Geopolitics of Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1005 Managerial Economics; and\nBSP2001 Macro and International Economics", + "corequisite": "" + }, + { + "moduleCode": "BSP3701", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core level 1000 & 2000 modules.", + "corequisite": "" + }, + { + "moduleCode": "BSP3701A", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core level 1000 & 2000 modules.", + "corequisite": "" + }, + { + "moduleCode": "BSP3701B", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core level 1000 & 2000 modules.", + "corequisite": "" + }, + { + "moduleCode": "BSP3701C", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core level 1000 & 2000 modules.", + "corequisite": "" + }, + { + "moduleCode": "BSP3701D", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core level 1000 & 2000 modules.", + "corequisite": "" + }, + { + "moduleCode": "BSP3701X", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core level 1000 & 2000 modules.", + "corequisite": "" + }, + { + "moduleCode": "BSP4011", + "title": "Global Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP4512", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(BSP1703 or BSP1707 or EC1101E or EC1301) and BSP2701.", + "corequisite": "" + }, + { + "moduleCode": "BSP4012", + "title": "Managing Social Networks in Markets & Organisations", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP4515", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706", + "corequisite": "" + }, + { + "moduleCode": "BSP4511", + "title": "Industry And Competitive Analysis", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP3001", + "corequisite": "" + }, + { + "moduleCode": "BSP4512", + "title": "Global Strategic Management", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH4512 or BZ4812A or BK4009.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP2001", + "corequisite": "" + }, + { + "moduleCode": "BSP4513", + "title": "Econometrics: Theory and Practical Business Applications", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "EC2303 Foundations for Econometrics\nEC3303 Econometrics I\nEC3304 Econometrics II\nEC4305 Appled Econometrics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1005 Managerial Economics; or\nIS3240 Economics of e-Business", + "corequisite": "" + }, + { + "moduleCode": "BSP4515", + "title": "Managing Social Networks in Markets and Organizations", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "BSS4003", + "title": "Special Seminars in Business (SSIB)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "This will vary according to specific topics.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This will vary according to specific topics.", + "corequisite": "This will vary according to specific topics." + }, + { + "moduleCode": "BSS4003A", + "title": "SSIB: Innovation and Productivity", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Either BSP1005 or EC1301\n\nAND\n\n(2) Either DSC2008 or EC2303", + "corequisite": "" + }, + { + "moduleCode": "BSS4003B", + "title": "Innovation and Productivity (with Econometrics)", + "moduleCredit": 5, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BSN4811 Innovation and Productivity\n(BSS4003A Innovation and Productivity – for student\nintake cohorts in AY2016/17 or earlier)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC3303 Econometrics I; or\nBSE3703 Econometrics for Business I; or\nBSP4513 Econometrics: Theory and Practical Business Applications; or\nST3131 Regression Analysis;\n(or equivalent to any of the above prerequisite modules).", + "corequisite": "" + }, + { + "moduleCode": "BSS4761", + "title": "Special Seminars in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "BST3002", + "title": "Special Topics in Business (SPIB)", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BST3002A", + "title": "SPIB: Economic Crisis 2008", + "moduleCredit": 1, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BST3002B", + "title": "Business Consulting Practicum", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3102", + "corequisite": "" + }, + { + "moduleCode": "BST3002C", + "title": "Consulting Skills for Transformational Leaders", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BST3002D", + "title": "Sustainability Strategy", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BST3761", + "title": "Special Topics in Business", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "BT1101", + "title": "Introduction to Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC1007 or DSC1007X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BT2010", + "title": "Business Analytics Immersion Programme", + "moduleCredit": 6, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 40 MCs.", + "corequisite": "" + }, + { + "moduleCode": "BT2101", + "title": "Decision Making Methods and Tools", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010 Programming Methodology or its equivalent) and (MA1521 Calculus for Computing or MA1102R Calculus) and (BT1101 Introduction to Business Analytics)", + "corequisite": "" + }, + { + "moduleCode": "BT2102", + "title": "Data Management and Visualisation", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 Programming Methodology or its equivalent, and\nBT1101 Introduction to Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "BT3101", + "title": "Business Analytics Capstone Project", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT2101 and BT2102 and IS2101", + "corequisite": "" + }, + { + "moduleCode": "BT3102", + "title": "Computational Methods for Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT2101 and ((CS1020 or its equivalent) or CS2020 or (CS2030 or its equivalent) or CS2103/T or CS2113/T)", + "corequisite": "" + }, + { + "moduleCode": "BT3103", + "title": "Application Systems Development for Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT2102 Data Management and Visualisation", + "corequisite": "" + }, + { + "moduleCode": "BT4010", + "title": "Business Analytics Internship Programme", + "moduleCredit": 12, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT2010", + "corequisite": "" + }, + { + "moduleCode": "BT4011", + "title": "Business Analytics Capstone Industry Project", + "moduleCredit": 14, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "BT3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT4010", + "corequisite": "" + }, + { + "moduleCode": "BT4012", + "title": "Fraud Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT3102", + "corequisite": "" + }, + { + "moduleCode": "BT4013", + "title": "Analytics for Capital Market Trading and Investment", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT3102", + "corequisite": "" + }, + { + "moduleCode": "BT4014", + "title": "Analytics Driven Design of Adaptive Systems", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT2102", + "corequisite": "" + }, + { + "moduleCode": "BT4015", + "title": "Geospatial Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ST2131 or ST2334), BT2101 and BT2102 and (CS2010 or CS2040 or their equivalents)", + "corequisite": "" + }, + { + "moduleCode": "BT4016", + "title": "Risk Analytics for Financial Services", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT2101 and BT2102", + "corequisite": "" + }, + { + "moduleCode": "BT4101", + "title": "B.Sc. (Business Analytics) Dissertation", + "moduleCredit": 12, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Attained at least 70% of the MC requirement for degree", + "corequisite": "" + }, + { + "moduleCode": "BT4103", + "title": "Business Analytics Capstone Project", + "moduleCredit": 8, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "BT3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT3102 and BT3103 and IS2101", + "corequisite": "" + }, + { + "moduleCode": "BT4211", + "title": "Data-Driven Marketing", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705X and [(BT2101 and BT2102) or (DBA3803 and IT3010)]", + "corequisite": "" + }, + { + "moduleCode": "BT4212", + "title": "Search Engine Optimization and Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CS1010 or equivalent) and BT2101] or [DAO2702 and DBA3803]", + "corequisite": "" + }, + { + "moduleCode": "BT4221", + "title": "Big Data Techniques and Technologies", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS4225 and CS5425", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CS1010 or equivalent) and BT2101 and BT2102] or [DAO2702 and DBA3803 and IT3010]", + "corequisite": "" + }, + { + "moduleCode": "BT4222", + "title": "Mining Web Data for Business Insights", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CS1010 or equivalent) and BT2101 and BT2102] or [DAO2702 and DBA3803 and IT3010]", + "corequisite": "" + }, + { + "moduleCode": "BT4240", + "title": "Machine Learning for Predictive Data Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "IS4240, IT3011, and CS3244", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[MA1311 Matrix Algebra and Applications or MA1101R\nLinear Algebra I] and [MA1521 Calculus for Computing or\nMA1102R Calculus] and [BT2101 Decision Making\nMethods and Tools]", + "corequisite": "" + }, + { + "moduleCode": "BT5110", + "title": "Data Management and Warehousing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be in Master of Science in Business Analytics programme.", + "corequisite": "" + }, + { + "moduleCode": "BT5126", + "title": "Hands-on with Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "IS5126 Hands-on with Applied Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC5103 Statistics", + "corequisite": "" + }, + { + "moduleCode": "BT5151", + "title": "Advanced Analytics and Machine Learning", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "BT4222 Mining Web Data for Business Insights,\nST5202 Applied Regression Analysis,\nST5318 Statistical Methods for Health Science,\nBT5152 Decision Making Technology for Business,\nIS5152 Data-Driven Decision Making", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC5106 Foundation in Data Analytics I\nDSC5106 Foundations of Business Analytics\nDSC5103 Statistics", + "corequisite": "" + }, + { + "moduleCode": "BT5152", + "title": "Decision Making Technology for Business", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "IS5152", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC5103 or an equivalent module with R programming experience", + "corequisite": "" + }, + { + "moduleCode": "BT5152E", + "title": "Decision Making Technology for Business and Economics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "BT5152E and ECA5304", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BT5153", + "title": "Applied Machine Learning for Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "BT4222, CS5246", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC5106 Foundation in Data Analytics I OR DSC5103 Statistics", + "corequisite": "" + }, + { + "moduleCode": "BT5154", + "title": "Foundation in Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "BT4222 Mining Web Data for Business Insights,\nST5202 Applied Regression Analysis,\nST5318 Statistical Methods for Health Science\nDCS5106 Foundation in Data Analytics I\nDBA5106 Introduction to Business Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BT5155", + "title": "Operations Research and Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BDC5101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BV2000", + "title": "Behavioural Science", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BV3000", + "title": "Behavioural Science", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BV4000", + "title": "Behavioural Science", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BX5101", + "title": "Business and the Environment", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6000", + "title": "Applied Economics", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6001", + "title": "Model Building Workshop I: Static Models", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Applied Economics or ECA 5001 or BMA 5001 or EC6101", + "corequisite": "" + }, + { + "moduleCode": "BZD6003", + "title": "Applied Econometrics I", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6004", + "title": "Applied Econometrics II", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BZD6003 Applied Econometrics I", + "corequisite": "" + }, + { + "moduleCode": "BZD6005", + "title": "Applied Econometrics III", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BZD6004 Applied Econometrics II", + "corequisite": "" + }, + { + "moduleCode": "BZD6006", + "title": "Organization Theory", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6008", + "title": "Cognition and Affect", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6009", + "title": "Motivation and Interpersonal Processes", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6010", + "title": "Seminar in Research Methodology", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6011", + "title": "Advanced Quantitative Research Methods", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6012", + "title": "Experimental Methods for Behavioral Research", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6013", + "title": "Psychological Theories in Consumer Research", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "BZD6014", + "title": "Strategy and Policy Pre-Seminar", + "moduleCredit": 1, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS5101", + "title": "Theorizing from Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS5880", + "title": "Topics in Comparative Asian Studies I", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS5880A", + "title": "Intersections and Comparison: Asia Observed", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS5881", + "title": "Silk Routes in Asia: Where the Global Meets the Local", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS6101", + "title": "Asian Studies in Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS6102", + "title": "Pan-Asianism and East Asian Integration", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CAS6880", + "title": "Topics in Comparative Asian Studies II", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CD4000", + "title": "Clinical Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CDM5101", + "title": "Fundamentals of Cancer Biology", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CDM5102", + "title": "Translational Cancer Research", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CDM5101 Fundamentals of Cancer Biology", + "corequisite": "" + }, + { + "moduleCode": "CDM5103", + "title": "Advanced Topics in RNA Biology and Human Diseases", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CDM5104", + "title": "Introduction to Bioinformatics for Metagenomics", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE1101", + "title": "Civil Engineering Principles and Practice", + "moduleCredit": 6, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE1101A", + "title": "Civil Engineering Principles and Practice", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE1102", + "title": "Principles & Practice in Infrastructure and Environment", + "moduleCredit": 6, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE1109", + "title": "Statics And Mechanics Of Materials", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1109FC, EG1109, EG1109M, CE1109FC, CE1109X, TCE1109", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A Level Math / H2 Math or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE1109X", + "title": "Statics and Mechanics of Materials", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1109, EG1109FC, EG1109M, CE1109, CE1109FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Math / H2 Math or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE2102", + "title": "Principles & Practice in Infrastructure and Environment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CE1102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE2112", + "title": "Soil Mechanics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE2112", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109", + "corequisite": "" + }, + { + "moduleCode": "CE2134", + "title": "Hydraulics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME2134 Fluid Mechanics I\nTCE2134", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109/CE1109X", + "corequisite": "" + }, + { + "moduleCode": "CE2155", + "title": "Structural Mechanics and Materials", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE2155", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109", + "corequisite": "" + }, + { + "moduleCode": "CE2183", + "title": "Construction Project Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE2183", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE2184", + "title": "Infrastructure & The Environment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TCE2184", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE2407", + "title": "Engineering & Uncertainty Analyses", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE2407", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505and MA1506", + "corequisite": "" + }, + { + "moduleCode": "CE2409", + "title": "Computer Applications in Civil Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CE2408 Computer Aided Engineering", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3101", + "title": "Integrated Infrastructure Project", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE3102", + "title": "Socio-economically sustainable developments", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3115", + "title": "Geotechnical Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE3115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2112", + "corequisite": "" + }, + { + "moduleCode": "CE3116", + "title": "Foundation Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE3116", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2112", + "corequisite": "" + }, + { + "moduleCode": "CE3121", + "title": "Transportation Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE3121", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2407 Engineering & Uncertainty Analyses or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE3132", + "title": "Water Resources Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE3132", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2134", + "corequisite": "" + }, + { + "moduleCode": "CE3141", + "title": "Water & Wastewater Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2144", + "corequisite": "" + }, + { + "moduleCode": "CE3155", + "title": "Structural Analysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE3155", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2155", + "corequisite": "" + }, + { + "moduleCode": "CE3165", + "title": "Structural Concrete Design", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE3165", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3155 Structural Analysis", + "corequisite": "" + }, + { + "moduleCode": "CE3166", + "title": "Structural Steel Design and System", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE3166", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2155 Structural Mechanics and Materials &\nCE3155 Structural Analysis", + "corequisite": "" + }, + { + "moduleCode": "CE3201", + "title": "Civil Engineering Analytics and Data Visualization", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3202", + "title": "Data Acquisition for Civil Engineering Applications", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3203", + "title": "Optimization Methods for Civil Engineers", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3204", + "title": "Data Management for Civil Engineers", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3941", + "title": "Exchange Breadth Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3961", + "title": "Exchange Unrestricted Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3962", + "title": "Exchange Unrestricted Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3963", + "title": "Exchange Unrestricted Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3981", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE3982", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE4103", + "title": "Design Project", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "TCE4103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE4 standing [Successful completion of relevant CE 2 and CE 3 modules which will be specified in the each project]", + "corequisite": "" + }, + { + "moduleCode": "CE4104", + "title": "B. Eng. Dissertation", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "TCE4104", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "CE4 Standing", + "corequisite": "" + }, + { + "moduleCode": "CE4106", + "title": "B.Eng Dissertation", + "moduleCredit": 9, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "CE4 standing", + "corequisite": "" + }, + { + "moduleCode": "CE4221", + "title": "Design of Land Transport Infrastructures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3121 Transportation Engineering", + "corequisite": "" + }, + { + "moduleCode": "CE4231", + "title": "Earth's Climate: Science & Modelling", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505 and MA1506, or equivalents", + "corequisite": "" + }, + { + "moduleCode": "CE4240", + "title": "Advanced Waste Water Treatment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE4247", + "title": "Treatment Plant Hydraulics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TCE4247", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2134 Hydraulics or equivalent, with minimum a B grade", + "corequisite": "" + }, + { + "moduleCode": "CE4257", + "title": "Linear Finite Element Analysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE4257", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3155", + "corequisite": "" + }, + { + "moduleCode": "CE4257A", + "title": "Finite Element Concepts & Applications", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE4257B", + "title": "Finite Element Analysis for Civil Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CE4257A Finite Element Concepts & Applications", + "corequisite": "" + }, + { + "moduleCode": "CE4258", + "title": "Structural Stability & Dynamics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE4258", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2407 Engineering & Uncertainty Analyses, and CE3155 Structural Analysis", + "corequisite": "" + }, + { + "moduleCode": "CE4282", + "title": "Building Information Modeling for Project Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TCE4282", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE4283A", + "title": "BIM Technologies", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE4283B", + "title": "Virtual Design and Construction: Moving Beyond BIM", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE4283A BIM Technologies", + "corequisite": "" + }, + { + "moduleCode": "CE4981", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE4982", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5001", + "title": "Research Project", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5101", + "title": "Seepage & Consolidation of Soils", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5103", + "title": "Tunnelling and Rock Mechanics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5104", + "title": "Underground Space", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2112, or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5104A", + "title": "Tunnelling in Soils", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in Soil Mechanics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5104B", + "title": "Tunnelling in Rocks", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in geotechnical engineering or equivalent.\nBackground in rock mechanics is useful but not essential.", + "corequisite": "" + }, + { + "moduleCode": "CE5105", + "title": "Analytical & Numerical Methods In Foundation Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2112 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5106", + "title": "Ground Improvement", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE5106", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2112 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5106A", + "title": "Ground Improvement for Soft Soils", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5106B", + "title": "Advanced Ground Improvement for Difficult Ground", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics or equivalent\nCE5106A Ground Improvement for Soft Soils", + "corequisite": "" + }, + { + "moduleCode": "CE5107", + "title": "Pile Foundations", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE5107", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Undergraduate: CE2112 & CE3116\nGraduate students: Background in Soil Mechanics and Foundation Engineering", + "corequisite": "" + }, + { + "moduleCode": "CE5107A", + "title": "Principles of Pile Foundation Design", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics and foundation engineering or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5107B", + "title": "Pile Foundation Problems and EC7 Impact", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics and foundation engineering or equivalent.\nCE5107A Principles of Pile Foundation Design", + "corequisite": "" + }, + { + "moduleCode": "CE5108", + "title": "Earth Retaining Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE5108", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2112 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5108A", + "title": "Lateral Earth Pressures and Retaining Wall Design via Eurocode 7", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5108B", + "title": "Deep Excavations Design Using Eurocode 7", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics or equivalent\nCE5108A Lateral Earth Pressures and Retaining Wall Design Design via Eurocode 7 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5110", + "title": "Constitutive Relationship in Geotechnical Analysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5111", + "title": "Underground Construction Design Project", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5112", + "title": "Structural Support Systems for Excavation", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE5108 Earth-Retaining Structures, with 1st priority to MSc (Geotechnical) and 2nd priority to MSc (CE) specializing in Geotechnical", + "corequisite": "" + }, + { + "moduleCode": "CE5113", + "title": "Geotechnical Investigation & Monitoring", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE5113", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5113A", + "title": "Geotechnical Investigation according to EC7", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5113B", + "title": "Geophysical Methods & Geotechnical Monitoring", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in soil mechanics or equivalent and CE5113A Basic\nGeotechnical Investigation according to EC7", + "corequisite": "" + }, + { + "moduleCode": "CE5203", + "title": "Traffic Flow & Control", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3121 Transportation Engineering, or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5204", + "title": "Pavement Design & Rehabilitation", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5205", + "title": "Transportation Planning", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3121 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5206", + "title": "Urban Public Transportation Systems", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3121 Transportation Engineering or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5208", + "title": "Transport Infrastructure Asset Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3121 Transportation Engineering or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5209", + "title": "Transportation Data Analytics and Modeling", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3121 and CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5307", + "title": "Wave Hydrodynamics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "OT5201", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2134 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5307A", + "title": "Ocean Waves", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE5307, OT5201", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5307B", + "title": "Hydrodynamic Loads on Offshore Structures", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE5307, OT5201", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Knowledge in water wave mechanics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5307C", + "title": "Finite Amplitude Wave Theories & Their Applications", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE5307, OT5201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Knowledge in water wave mechanics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5308", + "title": "Coastal Processes & Sediment Transport", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "CE5307A", + "corequisite": "" + }, + { + "moduleCode": "CE5310", + "title": "Hydroinformatics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5311", + "title": "Environmental modelling with computers", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Minimum requirement CE2134 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "CE5312", + "title": "Open-channel Hydraulics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3132 Water Resources Engineering or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5313", + "title": "Groundwater Hydrology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5314", + "title": "HEWRM Project", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5315", + "title": "Climate Science for Engineers", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3132 Water Resources Engineering", + "corequisite": "" + }, + { + "moduleCode": "CE5316A", + "title": "Water Resources for Smart and Liveable Cities: Introduction", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3132 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5316B", + "title": "Water Resources Modeling for Urban Catchments", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE5316A Water Resources for Smart and Liveable Cities: Introduction", + "corequisite": "" + }, + { + "moduleCode": "CE5316C", + "title": "Eco-hydrology", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE5316A Water Resources for Smart and Liveable Cities: Introduction", + "corequisite": "" + }, + { + "moduleCode": "CE5377", + "title": "Numerical Methods in Mechanics & Envr. Flows", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CE5311 Environmental modelling with computers, CE6003 Numerical Methods In Engineering and Mechanics, and CE6077 Advanced Numerical Methods in Mechanics & Envr. Flows", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EG1109/ CE1109 Statics and Mechanics of Materials and CE2134 Hydraulics", + "corequisite": "" + }, + { + "moduleCode": "CE5403", + "title": "Industrial Wastewater Control", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5405", + "title": "Toxic & Hazardous Waste Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5408", + "title": "Membrance Technology in Environmental Applications", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5504", + "title": "Finite Element Analysis & Applications", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5505", + "title": "Plastic Analysis of Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5509", + "title": "Advanced Structural Steel Design", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE5509", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3166 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5509A", + "title": "Advanced Structural Steel Design to EC3", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in Structural Steel Design", + "corequisite": "" + }, + { + "moduleCode": "CE5509B", + "title": "Design of Composite Steel and Concrete Structures to EC4", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in Structural Steel Design", + "corequisite": "" + }, + { + "moduleCode": "CE5510", + "title": "Advanced Structural Concrete Design", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE5510", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3165 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5510A", + "title": "Structural Concrete Design to EC2", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in Structural Mechanics and Analysis", + "corequisite": "" + }, + { + "moduleCode": "CE5510B", + "title": "Advanced Structural Concrete Design to EC2", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CE5510A Structural Concrete Design to EC2 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5512", + "title": "Plates and Shells", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5513", + "title": "Plastic Analysis Of Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CE5885A Topics in Structural Engineering: Advanced Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2155 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5514", + "title": "Plate & Shell Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME5103", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2155 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5515", + "title": "Structural Health Monitoring", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3202 Data Acquisition for Civil Engineering Applications, or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5603", + "title": "Engineering Economics & Project Evaluation", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5603A", + "title": "Evaluating Economic Feasibility of Projects", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5603B", + "title": "Evaluating Economic Risks in Projects", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CE5603A Evaluating Economic Feasibility of Projects or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5604", + "title": "Advanced Concrete Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE5604", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2155, or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5610", + "title": "Assessment and Retrofit of Concrete Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3165 or CE Graduate standing", + "corequisite": "" + }, + { + "moduleCode": "CE5610A", + "title": "Concrete and Cementitious Composites", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5610B", + "title": "Repair and Retrofit of Concrete Structures", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in Structural Concrete Design", + "corequisite": "" + }, + { + "moduleCode": "CE5611", + "title": "Precast Concrete Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CE5610 Precast and Retrofitting Technology (taken in Semester 2, AY2008/09 or earlier)\nTCE5611", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE 3165 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5611A", + "title": "Specifying Concrete to EN 206", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5611B", + "title": "Precast Concrete Design", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in Structural Concrete Design", + "corequisite": "" + }, + { + "moduleCode": "CE5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5701A", + "title": "Engineering Fracture Mechanics (St)", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5702", + "title": "Reliability Analysis And Design", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2407 or Equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5803", + "title": "Gis in Civil Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5804", + "title": "Global Infrastructure Project Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2183 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5805", + "title": "DfMA & Productivity Analytics in Construction", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE5805", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2183 Construction Project Management; AND\nCE4- / EVE4-standing or higher", + "corequisite": "" + }, + { + "moduleCode": "CE5805A", + "title": "Construction Productivity Analytics", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5805B", + "title": "Design for Manufacture and Assembly", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5806", + "title": "Advanced Project Management with Lean Construction", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 / EVE4- standing or higher; AND\nCE2183 Construction Project Management or Equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5806A", + "title": "Advanced Project Management", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5806B", + "title": "Lean Construction Management", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5807", + "title": "Integrated Digital Delivery (IDD)", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CE5804 Global Infrastructure Project Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2409 Computer Applications in Civil Engineering or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5807A", + "title": "Digital Technology & Analytics for Construction", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5807B", + "title": "Integrated Construction Logistics", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5808", + "title": "Digital Design and Construction (BIM and VDC)", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CE5808A & CE5808B taken as a pair; and CE4282", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2409; EG1311; CS1101E; equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5808A", + "title": "Digital Design Using BIM Technologies", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5808B", + "title": "Virtual Design & Construction: Moving Beyond BIM", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5880", + "title": "Topics in Project Management Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Departmental Approval (depending on the title)", + "corequisite": "" + }, + { + "moduleCode": "CE5881", + "title": "Topics in Geotechnical Engineering: Soil Dynamics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE5883A", + "title": "Topics in Hydraulic & Water Resources - Environmental Hydraulics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE 2134 Hydraulics and/or fluid mechanics background", + "corequisite": "" + }, + { + "moduleCode": "CE5883B", + "title": "Topics in Hydraulic & Water Resources – Modelling Climate Change", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "UG: MA1505 and MA1506, or equivalents \nPG: Knowledge in Linear Algebra and Differential Equations, or Instructor Permission", + "corequisite": "" + }, + { + "moduleCode": "CE5885", + "title": "Topics in Structural Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Departmental Approval (depending on the title)", + "corequisite": "" + }, + { + "moduleCode": "CE5885A", + "title": "Topics in Structural Engineering: Advanced Analysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CE5513 Plastic Analysis of Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate-student standing: CE4258 Structural Stability and Dynamics, or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE5886", + "title": "Topics in Concrete Engineering: Specialized", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE 4 and above", + "corequisite": "" + }, + { + "moduleCode": "CE5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6001", + "title": "Operations & Management of Infrastructure Systems", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6002", + "title": "Analysis of Civil Engineering Experiments", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6003", + "title": "Numerical Methods in Engineering Mechanics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6006", + "title": "Advanced Finite Element Analysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6077", + "title": "Advanced Numerical Methods in Mechanics & Envr. Flows", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CE5311 Environmental modelling with computers, and CE6003 Numerical Methods In Engineering and Mechanics, CE5377 Numerical Methods in Mechanics & Envr. Flows", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EG1109/ CE1109 Statics and Mechanics of Materials and CE2134 Hydraulics", + "corequisite": "" + }, + { + "moduleCode": "CE6077A", + "title": "Numerical methods in Civil Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE5311, CE5377/6077, CE6003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2407 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE6077B", + "title": "Numerical Methods for Environmental Flows", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE5311, CE5377/CE6077, CE6003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2134 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE6077C", + "title": "Numerical Methods and Applications to Civil Engineering Mechanics", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CE5311, CE5377/CE6077, CE6003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE2407 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CE6101", + "title": "Geotechnical Constitutive Modeling", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6102", + "title": "Geotechnical Analysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6403", + "title": "Advanced Environmental Microbiology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CE6705", + "title": "Analysis & Design of Buildings Against Hazards", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate student standing", + "corequisite": "" + }, + { + "moduleCode": "CE6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CFG1002", + "title": "Career Catalyst", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CFG2002", + "title": "Global Industry Insights", + "moduleCredit": 2, + "department": "Centre for Future-ready Grads", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS undergraduates who have completed CFG1002 Career Catalyst.", + "corequisite": "" + }, + { + "moduleCode": "CG1111", + "title": "Engineering Principles and Practice I", + "moduleCredit": 6, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1 + ], + "preclusion": "CG1108 Electrical Engineering, EG1112 Engineering Principles and Practice II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CG1112", + "title": "Engineering Principles and Practice II", + "moduleCredit": 6, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 Programming Methodology and CG1111 Engineering Principles and Practice I", + "corequisite": "" + }, + { + "moduleCode": "CG2023", + "title": "Signals and Systems", + "moduleCredit": 4, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 2 + ], + "preclusion": "EE2023 Signals and Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1506 or MA1512", + "corequisite": "" + }, + { + "moduleCode": "CG2027", + "title": "Transistor-level Digital Circuits", + "moduleCredit": 2, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2021 Devices and Circuit", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG1111 Engineering Principles and Practice I OR\nCG1108 Electrical Engineering OR\nEG1112 Engineering Principles and Practice II", + "corequisite": "" + }, + { + "moduleCode": "CG2028", + "title": "Computer Organization", + "moduleCredit": 2, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2024 Programming for Computer Interfaces", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 Programming Methodology and (EE2026 Digital Design / EE2020 Digital Fundamentals)", + "corequisite": "" + }, + { + "moduleCode": "CG2271", + "title": "Real-Time Operating Systems", + "moduleCredit": 4, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2106 Introduction to Operating Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or (CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CG3002", + "title": "Embedded Systems Design Project", + "moduleCredit": 6, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [], + "preclusion": "EE3032 Innovation & Enterprise II\nEE3208 Embedded Computer Systems Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2024 and CG2271 and CS2113/T", + "corequisite": "" + }, + { + "moduleCode": "CG3207", + "title": "Computer Architecture", + "moduleCredit": 4, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1 + ], + "preclusion": "EE3207E, TEE3207", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2024 (for ECE AY2016 intake & prior) / CG2028 or EE2028 (for ECE AY2017 intake & after)", + "corequisite": "" + }, + { + "moduleCode": "CG4001", + "title": "B. Eng. Dissertation", + "moduleCredit": 12, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "EE4001 B.Eng. Dissertation\nCP4101 B.Comp. Dissertation", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 standing", + "corequisite": "" + }, + { + "moduleCode": "CG4002", + "title": "Computer Engineering Capstone Project", + "moduleCredit": 8, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "CG3002 Embedded Systems Design Project\nEE3032 Innovation & Enterprise II\nEE3208 Embedded Computer Systems Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2028 Computer Organization and CG2271 Real-Time Operating Systems and CS2113/T Software Engineering & Object-Oriented Programming", + "corequisite": "" + }, + { + "moduleCode": "CG4003", + "title": "Advanced Project and Internship", + "moduleCredit": 12, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "CG4001 B.Eng. Dissertation\nCP4101 B.Comp. Dissertation\nCP4106 Computing Project\nCP3200 Student Internship Programme\nCP3880 Advanced Technology Attachment Programme\nEE4001 B.Eng. Dissertation\nEE4002R Research Capstone\nEG3611A Industrial Attachment\nEG3612 Vacation Internship Programme", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Level 3 standing", + "corequisite": "" + }, + { + "moduleCode": "CH1101E", + "title": "Retelling Chinese Stories: Change and Continuity", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A pass in GCE \"O\" Level Chinese Language \"B\" syllabus or higher, or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "CH2121", + "title": "History of Chinese Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CL2121", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n(i) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n(ii) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n(iii) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n(iv) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n(v) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2141", + "title": "General History of China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CL2241 and CL2141", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain: \n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language\nat GCE 'AO' Level (at GCE 'A' Level examination); \nOR 2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; \nOR 3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level;\nOR 4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level. \n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2161", + "title": "Traditional Chinese Taxonomy of Learning", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2162", + "title": "Reading Classical Chinese Texts", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CH1101E and either CH2121/CL2121 or CH2141/CL2241", + "corequisite": "" + }, + { + "moduleCode": "CH2221", + "title": "Modern Chinese Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CH3226", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2222", + "title": "Selected Readings in Chinese Prose", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2223", + "title": "Chinese Fiction", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2226", + "title": "Selected Authors/Texts I", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2228", + "title": "Ci Lyric in the Tang-Song Period", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2241", + "title": "HIstory of Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2242", + "title": "A Global Perspective on Chinese Identities", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level,\nor (b) Chinese Language at GCE 'AO' Level (at GCE\n'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or\n(b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at\nGCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and\nLiterature (H2CLL) at GCE 'A' Level, or (b) Chinese\nLanguage and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2243", + "title": "Chinese in Southeast Asia", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2245", + "title": "Modern China: Literature, Culture, History", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE 'O' level, or (b) Chinese Language at GCE 'AO' level (at GCE 'A' level examination); OR\n2) at least a pass for (a) Chinese at GCE 'A' level, or (b) Higher Chinese at GCE 'A' level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE 'A' level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2246", + "title": "Lu Xun and Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2245", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2247", + "title": "Socio-Cultural Dimensions of Cross-Strait Relations", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level,\nor (b) Chinese Language at GCE 'AO' Level (at GCE\n'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or\n(b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at\nGCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and\nLiterature (H2CLL) at GCE 'A' Level, or (b) Chinese\nLanguage and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2248", + "title": "An Understanding of Singapore's Teochew Community", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE ‘O’ Level, or (b) Chinese Language at GCE ‘AO’ Level (at GCE ‘A’ Level examination); OR\n2) At least a pass for (a) Chinese at GCE ‘A’ Level, or (b)Higher Chinese at GCE ‘A’ Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE ‘A’ Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ Level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2252", + "title": "History of Chinese Philosophy", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2272", + "title": "Introduction to Chinese Art (taught in Chinese)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2293", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain at least a Grade B4 and above in 1) CL or CL2 (AO level) at the GCE “A” Level Examination, OR 2) HCL or CL1 at the GCE “O” Level Examination. Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2273", + "title": "Chinese Media in Singapore: Theory and Practice", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n\n1) at least a B4 for (a) Higher Chinese at GCE 'O' level, or (b) Chinese Language at GCE 'AO' level (at GCE'A' level examination); OR\n\n2) at least a pass for (a) Chinese at GCE 'A' level, or (b) Higher Chinese at GCE 'A' level; OR\n\n3) at least C grade for Chinese Language (H1CL) at GCE 'A' level; OR\n\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' level.\n\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH2274", + "title": "Discovering the Chinese Business Environment", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2271 Chinese for Business and Industry", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE 'O' level,\nor (b) Chinese Language at GCE 'AO' level (at GCE\n'A' level examination); OR\n2) at least a pass for (a) Chinese at GCE 'A' level, or\n(b) Higher Chinese at GCE 'A' level; OR\n3) at least C grade for Chinese Language (H1CL) at\nGCE 'A' level; OR\n4) At least a pass for (a) Chinese Language and\nLiterature (H2CLL) at GCE 'A' level, or (b) Chinese\nLanguage and Literature (H3CLL) at GCE 'A' level.\n5) Equivalent qualifications may be accepted", + "corequisite": "" + }, + { + "moduleCode": "CH2275", + "title": "Chinese Pop Music in East Asia", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Pass in GCE “O” Level Chinese Language “B” syllabus or higher, or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "CH2291", + "title": "Chinese Tradition (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2292", + "title": "Special Topics in Chinese Literature (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2292A", + "title": "Understanding Modern China Through Film (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2292", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2293", + "title": "Introduction to Chinese Art (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CH2272", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2294", + "title": "Religion in Chinese Societies", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2295", + "title": "Commerce and Culture in China's Past (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2298", + "title": "Chinese Personalities in Southeast Asia", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A pass in GCE \"O\" Level Chinese Language \"B\" syllabus or higher, or equivalent, since there would be lessons conducted in Chinese and students have the option to do their assignments in Chinese.", + "corequisite": "" + }, + { + "moduleCode": "CH2299", + "title": "Art of Modern and Contemporary China (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2390", + "title": "Chinese Diasporas (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2391", + "title": "Strangers in Chinese Fiction and Film (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2392", + "title": "Chinese Women in Context (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CH2244", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH2393", + "title": "Chinese Business Enterprises and Management (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "CH3297", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3221", + "title": "Selected Readings in Chinese Verse", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CL3221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain: \n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR \n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR \n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR \n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level. \n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3222", + "title": "Chinese Drama", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3223", + "title": "Selected Authors/Texts II", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3225", + "title": "Keywords in S'pore and M'sian Chinese Literary Studies", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n\n1) At least a B4 for (a) Higher Chinese at GCE ‘O’ Level, or (b) Chinese Language at GCE ‘AO’ Level (at GCE ‘A’ Level examination); OR\n\n2) At least a pass for (a) Chinese at GCE ‘A’ Level, or (b) Higher Chinese at GCE ‘A’ Level; OR\n\n3) At least C grade for Chinese Language (H1CL) at GCE ‘A’ Level; OR\n\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ Level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ Level.\n\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3226", + "title": "Modern Chinese Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3227", + "title": "Chinese Vernacular Stories", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE ‘O’ Level, or (b) Chinese Language at GCE ‘AO’ Level (at GCE ‘A’ Level examination); OR\n2) At least a pass for (a) Chinese at GCE ‘A’ Level, or (b) Higher Chinese at GCE ‘A’ Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE ‘A’ Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ Level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3228", + "title": "Classical Poetry: Writing and Criticism", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n\n1) at least a B4 for (a) Higher Chinese at GCE 'O' level, or (b) Chinese Language at GCE 'AO' level (at GCE 'A' level examination); OR\n\n2) at least a pass for (a) Chinese at GCE 'A' level, or (b) Higher Chinese at GCE 'A' level; OR\n\n3) at least C grade for Chinese Language (H1CL) at GCE 'A' level; OR\n\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' level.\n\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3229", + "title": "Modern Literature in Taiwan and Hong Kong", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have obtained:\n1. at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level\n(at GCE ‘A’ level examination); OR  \n2. at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR  \n3. at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR  \n4. at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5. Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3230", + "title": "Ci Lyric in the Tang-Song Period", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CH2228", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3231", + "title": "Chinese Fiction", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2223", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3232", + "title": "Selected Readings in Chinese Prose", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3243", + "title": "Chinese Cultural History", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE `O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3244", + "title": "Topics On Contemporary China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3245", + "title": "Overseas Chinese Society", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3246", + "title": "Socio-Political History of Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3247", + "title": "Socio-Economic History of China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH3242 Selected Topics in Chinese History II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain;\n1) at least a B4 for (a) Higher Chinese at GCE 'O'\nlevel, or (b) Chinese Language at GCE 'AO' level (at\nGCE 'A' level examination); OR\n2) at least a pass for (a) Chinese at GCE 'A' level, or\n(b) Higher Chinese at GCE 'A' level; OR\n3) at least C grade for Chinese Language (H1CL) at\nGCE 'A' level; OR\n4) At least a pass for (a) Chinese Language and\nLiterature (H2CLL) at GCE 'A' level, or (b) Chinese\nLanguage and Literature (H3CLL) at GCE 'A' level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3248", + "title": "Contemporary China: 1949 to Present", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH3244 Topics in Contemporary China and HY3248 People's Republic of China, 1949-1989", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n\n1) At least a B4 for\n\n(a) Higher Chinese at GCE 'O' Level, or\n\n(b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR \n\n2) At least a pass for\n\n(a) Chinese at GCE 'A' Level, or\n\n(b) Higher Chinese at GCE 'A' Level; OR \n\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR \n\n4) At least a pass for\n\n(a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or \n\n(b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3253", + "title": "Confucian Thought", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3254", + "title": "Neo-Confucianism in Chinese History", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Students who have read CH3253 Confucian Thought.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE 'O' level, or (b) Chinese Language at GCE 'AO' level (at GCE 'A' level examination); OR\n2) at least a pass for (a) Chinese at GCE 'A' level, or (b) Higher Chinese at GCE 'A' level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE 'A' level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3255", + "title": "Introduction to Chinese Buddhism", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Studentsmust have obtained:\n1) at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level (atGCE ‘A’ level examination);OR\n2) at least a pass for\n(a) Chinese at GCE ‘A’ level, or \n(b)Higher Chinese atGCE ‘A’ level;OR\n3) at least C grade for Chinese Language (H1CL) at GCE ‘A’ level;OR\n4) at least a pass for\n(a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or\n(b) Chinese Language and Literature (H3CLL) atGCE ‘A’ level.\n5) Equivalent qualificationsmay be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3261", + "title": "Prescribed Text: The Four Books", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3271", + "title": "Contemporary Chinese Society and Culture", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH3291", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3272", + "title": "Selected Topics in Chinese Art (taught in Chinese)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH3293", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CH2272 or CH2293", + "corequisite": "" + }, + { + "moduleCode": "CH3273", + "title": "Modern and Contemporary Chinese Popular Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have obtained:\n1. at least a B4 for (a) Higher Chinese at GCE ‘O’ level,\nor (b) Chinese Language at GCE ‘AO’ level (at GCE ‘A’ level examination); OR  \n2. at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR  \n3. at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR  \n4. at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5. Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3274", + "title": "Lu Xun and Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2246, CH2245", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3291", + "title": "Contemporary Chinese Culture (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH3271", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3292", + "title": "Selected Topics in Chinese Civilisation (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3293", + "title": "Selected Topics in Chinese Art (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH3272", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3294", + "title": "Science and Medicine in China (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3295", + "title": "Understanding China: Past and Present (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3296", + "title": "'China' in the Making (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3298", + "title": "Chinese in Southeast Asia (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3299", + "title": "Cold War and the Chinese Diaspora (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3550", + "title": "Chinese Studies Internship", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "Any other XX3550 internship modules in China. \n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Major in CH/CL with 24 MCs of CH/CL modules.", + "corequisite": "" + }, + { + "moduleCode": "CH3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "CH3881", + "title": "Topics in Chinese Literature 1", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level (at GCE ‘A’ level examination); OR\n2) at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3882", + "title": "Topics in Chinese History 1", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level (at GCE ‘A’ level examination); OR\n2) at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH3882A", + "title": "Chinese Temples Across Southeast Asia (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH3883", + "title": "Topics in Chinese Philosophy I", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level (at GCE ‘A’ level examination); OR\n2) at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CH4201", + "title": "Chinese Classical Phonology", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CL3208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4202", + "title": "Chinese Semasiology", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4203", + "title": "Chinese Dialectology", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4204", + "title": "Selected Topics in Chinese Linguistics", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4205", + "title": "Chinese Metaphors", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4206", + "title": "Theoretical Issues in Chinese Grammar", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL; and CL2103, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4207", + "title": "History of Chinese Language", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CL3206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4222", + "title": "Chinese Classical Novels", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4223", + "title": "Chinese Literary Criticism", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4224", + "title": "Studies in Chinese Verse", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4226", + "title": "The City in Modern Chinese Literature", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4242", + "title": "Selected Periods of Chinese History I", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4243", + "title": "Selected Periods of Chinese History II", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in HY or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4244", + "title": "Selected Topics on The Overseas Chinese", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4246", + "title": "Chinese Local History", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in GL/GL recognised, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4247", + "title": "Print Culture in Modern China", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4248", + "title": "China Transnational: 1850 to the Present", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4251", + "title": "Modern-Contemporary Chinese Thought", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015-2019:\nCompleted 80 MCs, including 28 MCs in CH or CL or 28 MCs in PH or 28 MCs in GL/GL recognised, with a minimum CAP of 3.20 or be on the Honours track. PH students who believe they have sufficient background knowledge for the module should consult the lecturer for permission to take it.\n\nCohort 2020 onwards:\n Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track. PH students who believe they have sufficient background knowledge for the module should consult the lecturer for permission to take it.", + "corequisite": "" + }, + { + "moduleCode": "CH4261", + "title": "Prescribed Text: Zhuangzi", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in CH or CL or 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track. PH students who believe they have sufficient background knowledge for the module should consult the lecturer for permission to take it.", + "corequisite": "" + }, + { + "moduleCode": "CH4262", + "title": "Transregional Chinese Literary Connections", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including minimum 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4281", + "title": "Translation Studies", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: At least 2 translation modules (CL2280,CL2281,CL3281,CL3282,CL3283,CL3284,CL3285,CL3286) and completed 80 MCs, including 28 MCs in CH or CL or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: At least 2 translation modules (CL2280,CL2281,CL3281,CL3282,CL3283,CL3284,CL3285,CL3286) and completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CH4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before;\nCompleted 110 MCs including 60 MCs of CH/CL major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards;\nCompleted 110 MCs including 44 MCs of CH/CL major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "CH4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CH4401, CH4401S", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in CH or CL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "CH4881", + "title": "Topics in Chinese Literature II", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4882", + "title": "Topics in Chinese History II", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4882A", + "title": "Personalities in Modern Chinese History", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in CH or CL or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "CH4883", + "title": "Topics in Chinese Philosophy II", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in CH or CL, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in CH or CL or 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track. PH students who believe they have sufficient background knowledge for the module should consult the lecturer for permission to take it.", + "corequisite": "" + }, + { + "moduleCode": "CH5209", + "title": "Topics in Rhetoric", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5209R", + "title": "Topics in Rhetoric", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5210", + "title": "Chinese Lexical Semantics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5210R", + "title": "Chinese Lexical Semantics", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5211", + "title": "Seminar in Chinese Pragmatics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5211R", + "title": "Seminar In Chinese Pragmatics", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5212", + "title": "THEORIES IN PHONOLOGY (Taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5212R", + "title": "Theories in Phonology (Taught in English)", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5213", + "title": "Cognitive Linguistics & Chinese Language", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CH6201 - for students admitted before Academic Year 2005/2006.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate Students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5213R", + "title": "Cognitive Linguistics & Chinese Language", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5222", + "title": "Topics in Modern Chinese Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5222R", + "title": "Topics in Modern Chinese Literature", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5223", + "title": "Selected Authors", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5223R", + "title": "Selected Authors", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5224", + "title": "Prescribed Texts in Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5224R", + "title": "Prescribed Texts in Literature", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5225", + "title": "Topics in SE Asian Chinese Literature and Film", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5225R", + "title": "Topics in Se Asian Chinese Literature", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5242", + "title": "Selected Texts in Chinese Historiography", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to a graduate programme in Chinese Studies, or 120 MCs (or equivalent) and permission of the Department.", + "corequisite": "" + }, + { + "moduleCode": "CH5242R", + "title": "Selected Texts in Chinese Hist", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to a graduate programme in Chinese Studies, or 120 MCs (or equivalent) and permission of the Department.", + "corequisite": "" + }, + { + "moduleCode": "CH5243", + "title": "Contemporary China-Southeast Asia Relations", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5243R", + "title": "Contemporary China-Southeast Asia Relations", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5244", + "title": "Topics On History of Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5244R", + "title": "Topics On History of Modern China", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH5245", + "title": "Seminar in Early Taoism", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of an undergraduate degree in Chinese Studies (or permission of the instructor)", + "corequisite": "" + }, + { + "moduleCode": "CH5245R", + "title": "Seminar in Early Taoism", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of an undergraduate degree in Chinese Studies (or permission of the instructor)", + "corequisite": "" + }, + { + "moduleCode": "CH5246", + "title": "Seminar in Modern Taoism", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of an undergraduate degree in Chinese Studies (or permission of the instructor)", + "corequisite": "" + }, + { + "moduleCode": "CH5246R", + "title": "Seminar in Modern Taoism", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of an undergraduate degree in Chinese Studies (or permission of the instructor)", + "corequisite": "" + }, + { + "moduleCode": "CH5247", + "title": "Business Culture in Traditional China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5247R", + "title": "Business Culture in Traditional China", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Subject to the approval from HOD", + "corequisite": "" + }, + { + "moduleCode": "CH5880", + "title": "Topics in Applied Chinese Linguistics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH5880R", + "title": "Topics in Applied Chinese Linguistics", + "moduleCredit": 5, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6201", + "title": "Topics in Chinese Linguistics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "\"Graduate Students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department\"", + "corequisite": "" + }, + { + "moduleCode": "CH6202", + "title": "Universal Principles and Chinese Grammar", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6203", + "title": "Grammaticalization and Chinese Grammar", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6221", + "title": "Topics in Classical Chinese Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6226", + "title": "Chinese Literary Theories and Movements", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to a graduate programme in Chinese Studies, or 120 MCs (or equivalent) and permission of the Department.", + "corequisite": "" + }, + { + "moduleCode": "CH6227", + "title": "Culture and Society Through Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6241", + "title": "Topics in Chinese History", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH6243", + "title": "Seminar in Se Asian Chinese Studies", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "\"Graduate Students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department\"", + "corequisite": "" + }, + { + "moduleCode": "CH6245", + "title": "Culture and Society in Chinese History", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate Students in Chinese Studies, or 120MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH6246", + "title": "Chinese History and Historians", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6247", + "title": "Cold War and the Chinese in Southeast Asia", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department.", + "corequisite": "" + }, + { + "moduleCode": "CH6248", + "title": "Studies in Sino-S.e. Asian Interactions", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH6249", + "title": "Essential Outsiders?  The  Chinese  in  Southeast Asia", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate  students  in  Chinese  Studies,  or  120 MCs  (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH6251", + "title": "Topics in Chinese Philosophy", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH6252", + "title": "Intellectual Landscapes in Pre-Qin China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to a graduate programme in Chinese Studies, or 120 MCs (or equivalent) and permission of the Department.", + "corequisite": "" + }, + { + "moduleCode": "CH6261", + "title": "Chinese Studies in the West", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CH6262", + "title": "Independent Study in Chinese Studies", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Subject to the approval from HOD", + "corequisite": "" + }, + { + "moduleCode": "CH6263", + "title": "Translation: Formal, Cultural, Political", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Graduate students in Chinese Studies, or 120 MCs (or equivalent) and permission of Department", + "corequisite": "" + }, + { + "moduleCode": "CH6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Subject to the approval from HOD", + "corequisite": "" + }, + { + "moduleCode": "CHC5101", + "title": "Contemporary Research in Chinese Studies", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5102", + "title": "Contemporary Research in Chinese Language", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5301", + "title": "History and Civilizations of the Tang Empire", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5302", + "title": "Chinese Buddhist Proselytic Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5303", + "title": "Traditional Chinese Culture in Singapore and Malaysia", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5304", + "title": "Society and Culture of the Ming Dynasty", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5305", + "title": "Prominent Nanyang Chinese in Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5306", + "title": "Chinese Intellectual History, 10th – 19th Century", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5307", + "title": "Major Themes in Chinese History", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5308", + "title": "Chinese Kinship and Local Society", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5309", + "title": "Economic & Management Thought in Pre-Modern China", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5310", + "title": "Chinese Rhapsody", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5311", + "title": "Ci Studies", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5312", + "title": "Tang-Song Poetry and Poetics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5313", + "title": "Thematics in Chinese Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5314", + "title": "Chinese Religion", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5315", + "title": "Neo‐Taoism", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All graduates in our new Master’s program.", + "corequisite": "" + }, + { + "moduleCode": "CHC5316", + "title": "Print Culture and Chinese Literature: From Ming to Modern", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5317", + "title": "New Approaches to Modern Chinese Culture", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5318", + "title": "Time and Space in Traditional Chinese Culture", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5319", + "title": "Development of the Chinese Opera Scene in Singapore", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5320", + "title": "Grammaticalization in Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5321", + "title": "Beauty Through Chinese Lenses", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5322", + "title": "Pragmatics and Politeness", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5323", + "title": "Special Topics in Chinese Linguistics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5324", + "title": "Lexicon in Old Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5325", + "title": "Chinese Language Education and Research", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5326", + "title": "Comparative Grammar between Chinese and English", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CHC5330", + "title": "Chinese Popular Culture: Transformation and Flows", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CK3550", + "title": "China Studies Internship (taught in English)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules in China. \n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Major in CH/CL with 24 MCs of CH/CL modules.", + "corequisite": "" + }, + { + "moduleCode": "CL1101E", + "title": "Chinese Language: Its Past and Present", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A pass in GCE \"O\" Level Chinese Language \"B\" syllabus or higher, or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "CL2101", + "title": "The Chinese Script : History and Issues", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CL2201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2102", + "title": "Chinese Phonetics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CL2202", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2103", + "title": "Chinese Grammar", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CL2203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2104", + "title": "Reading/Writing Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2206", + "title": "Topics in Chinese Linguistics I", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2207", + "title": "Chinese Language and Culture", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2260", + "title": "Selected Readings", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL2280", + "title": "Basic Translation", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1) Exempted from NUS Qualifying English Test, or passed NUS Qualifying English Test, or exempted from further CELC Remedial English modules; AND\n2) Grade 'B4' and above in Higher Chinese (HCL) at GCE 'O' Level or Chinese (CL) at GCE 'AO' Level; OR Grade 'C' and above in Chinese Language (H1CL) at GCE 'A' Level.", + "corequisite": "" + }, + { + "moduleCode": "CL2281", + "title": "Translation and Interpretation", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1) Exempted from NUS Qualifying English Test, or passed NUS Qualifying English Test, or exempted from further CELC Remedial English modules; AND\n2) Grade 'B4' and above in Higher Chinese (HCL) at GCE 'O' Level or Chinese (CL) at GCE 'AO' Level; OR Grade 'C' and above in Chinese Language (H1CL) at GCE 'A' Level.", + "corequisite": "" + }, + { + "moduleCode": "CL2291", + "title": "Chinese Anthropolinguistics (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CL3201", + "title": "Communicating through Chinese Rhetoric and Metaphors", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3202", + "title": "Chinese Lexicology", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3203", + "title": "Chinese Pragmatics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3204", + "title": "Classical Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL1101E", + "corequisite": "" + }, + { + "moduleCode": "CL3205", + "title": "Topics on Chinese Linguistics II", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3206", + "title": "History of Chinese Language", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL1101E", + "corequisite": "" + }, + { + "moduleCode": "CL3207", + "title": "Chinese Sociolinguistics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3208", + "title": "Chinese Phonology", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "CH4201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3209", + "title": "Chinese Language Acquisition", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CL2206 & CL2209", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3210", + "title": "The Grammars and Lexicons of the Chinese Dialects", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have obtained:\n1) at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level (at GCE ‘A’ level examination); OR\n2) at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3211", + "title": "The Standardization of the Chinese Language", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "\"Students must have obtained:\n1) at least a B4 for (a) Higher Chinese at GCE ‘O’ level, or (b) Chinese Language at GCE ‘AO’ level (at GCE ‘A’ level examination); OR\n2) at least a pass for (a) Chinese at GCE ‘A’ level, or (b) Higher Chinese at GCE ‘A’ level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE ‘A’ level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ level.\n5) Equivalent qualifications may be accepted.\"", + "corequisite": "" + }, + { + "moduleCode": "CL3212", + "title": "Trendy Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n(i) At least a B4 for (a) Higher Chinese at GCE ‘O’ Level, or (b) Chinese Language at GCE ‘AO’ Level (at GCE ‘A’ Level examination); Or\n(ii) At least a pass for (a) Chinese at GCE ‘A’ Level, or (b) Higher Chinese at GCE ‘A’ Level; OR\n(iii) At least C grade for Chinese Language (H1CL) at GCE\n‘A’ Level; OR\n(iv) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE ‘A’ Level, or (b) Chinese Language and Literature (H3CLL) at GCE ‘A’ Level.", + "corequisite": "" + }, + { + "moduleCode": "CL3213", + "title": "Chinese Semantics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CL2204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3214", + "title": "Aspects of Chinese Linguistics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CL2292, CL2208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3215", + "title": "Chinese Language and Culture", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CL2207", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or (b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3216", + "title": "Chinese Stylistics", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must obtain:\n1) At least a B4 for (a) Higher Chinese at GCE 'O' Level, or \n(b) Chinese Language at GCE 'AO' Level (at GCE 'A' Level examination); OR\n2) At least a pass for (a) Chinese at GCE 'A' Level, or (b) Higher Chinese at GCE 'A' Level; OR\n3) At least C grade for Chinese Language (H1CL) at GCE 'A' Level; OR\n4) At least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' Level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' Level.\n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "CL3217", + "title": "The Analysis of Chinese Morphosyntax", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CL2210", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2103", + "corequisite": "" + }, + { + "moduleCode": "CL3281", + "title": "Advanced Translation", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2280 or CL2281", + "corequisite": "" + }, + { + "moduleCode": "CL3282", + "title": "Mass Media Translation", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2280 or CL2281", + "corequisite": "" + }, + { + "moduleCode": "CL3283", + "title": "Film and Television Subtitling Translation", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2280 or CL2281", + "corequisite": "" + }, + { + "moduleCode": "CL3284", + "title": "Literary Translation", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2280 or CL2281", + "corequisite": "" + }, + { + "moduleCode": "CL3285", + "title": "Computer-Assisted Translation Tools", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2280 or CL2281", + "corequisite": "" + }, + { + "moduleCode": "CL3286", + "title": "Translation Theories", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CL2280 or CL2281", + "corequisite": "" + }, + { + "moduleCode": "CL3550", + "title": "Chinese Language Internship", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Major in CH/CL with 24 MCs of CH/CL modules.", + "corequisite": "" + }, + { + "moduleCode": "CL3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "CLC1101", + "title": "Engaging and Building Communities", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have previously read CLC2101 or UHB2213 through the University Scholars Programme (USP) will NOT be required to undertake this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CLC2101", + "title": "Engaging and Building Communities", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CLC2201", + "title": "Community Development Practicum I", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CLC1101 or CLC2101 and CLC2202 (or taken concurrently with CLC2202)\nThis is a REQUIRED module for both Certificate and Minor students. Certificate students are strongly encouraged to access a course on research methods formally or informally to equip themselves for the practicum. Relevant methods courses include: CLC2202 Research Methods for Community Development, SC2101 Methods of Social Research, or SW3101 Social Work Research Methods", + "corequisite": "" + }, + { + "moduleCode": "CLC2202", + "title": "Research Methods for Community Development", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Nil (but exemption will be granted for Sociology and\nSocial Work Major students who have already read\nSC2101 and SW3101 as part of their Major requirements)", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CLC1101 (or CLC2101)", + "corequisite": "" + }, + { + "moduleCode": "CLC2203", + "title": "Community Development Practicum I", + "moduleCredit": 8, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [], + "preclusion": "CLC2201", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "CLC1101 or CLC2101 and CLC2202\n\nCLC2203 Practicum I is a REQUIRED module for both Certificate and Minor students. Certificate students are strongly encouraged to access a course on research methods formally or informally to equip themselves for the practicum. Relevant methods courses include: CLC2202 Research Methods for Community Development, SC2101 Methods of Social Research, or SW3101 Social Work Research Methods", + "corequisite": "" + }, + { + "moduleCode": "CLC3301", + "title": "Communicating Social Issues in Singapore", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "NM4230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CLC3302", + "title": "Diversity and Inclusion", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CLC3303", + "title": "Community Leadership", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CLC3304", + "title": "Special Topics in Community Development & Leadership", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CLC3305", + "title": "Community Development Practicum II", + "moduleCredit": 4, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Practicum II is ONLY open to CLC Minor students.\nMinor students must first read and passed the 3\ncompulsory CLC modules before accessing Practicum II\n(CLC3305). These 3 modules are: the theory module\n(CLC1101), the Methods module (CLC2201 or the\nrecognized methods modules SC2101 or SW3101), AND\nPracticum I (CLC2202).", + "corequisite": "" + }, + { + "moduleCode": "CLC3306", + "title": "Community Development Practicum II", + "moduleCredit": 8, + "department": "Chua Thian Poh Comm Leader Center", + "faculty": "NUS", + "semester": [], + "preclusion": "CLC3305", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "CLC1101 (Engaging and Building Communities), CLC2202 (Research Methods for Community Development), and CLC2203 (Community Development Practicum I)\n\nPracticum II is now open to both CLC Certificate and Minor students with the change in the Certificate programme from 2 to 3 modules.\n\nStudents must first read and passed the 3 compulsory CLC modules before accessing Practicum II (CLC3306). These 3 modules are: CLC1101 Engaging and Building Communities, CLC2202 Research Methods for Community Development or the recognized methods modules SC2101 or SW3101), AND CLC2203 Community Development Practicum I.", + "corequisite": "" + }, + { + "moduleCode": "CM1111", + "title": "Inorganic Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A' level or H2 pass in Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CM1121", + "title": "Organic Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM1501 or CM1503 or CM1401", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A' level or H2 pass in Chemistry or equivalent or CM1417/CM1417X", + "corequisite": "" + }, + { + "moduleCode": "CM1131", + "title": "Physical Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A' level or H2 pass in Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CM1191", + "title": "Experiments in Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2/A‐level Chemistry or its equivalent or by permission", + "corequisite": "" + }, + { + "moduleCode": "CM1401", + "title": "Chemistry for Life Sciences", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM1121 or CM1402 or CM1501", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE 'A' level or H2 pass in Chemistry or equivalent or CM1417/CM1417X", + "corequisite": "" + }, + { + "moduleCode": "CM1402", + "title": "General Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM1401 – Chemistry for Life Sciences", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE 'A' level or H2 pass in Chemistry or equivalent or CM1417 /CM1417X", + "corequisite": "" + }, + { + "moduleCode": "CM1417", + "title": "Fundamentals of Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "A level or H2 Chemistry or equivalent or CM1417X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'O' Level pass in Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CM1417X", + "title": "Fundamentals of Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2, + 3 + ], + "preclusion": "Students with ‘A’ level or H2 Chemistry or equivalent.\nor CM1417", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "’O’ level pass in chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CM1501", + "title": "Organic Chemistry for Engineers", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CM1121, CM1503, CM1401", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A' level or H2 pass in Chemistry or equivalent or CM1417 /CM1417X", + "corequisite": "" + }, + { + "moduleCode": "CM1502", + "title": "General and Physical Chemistry for Engineers", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Chemistry majors, CM1502FC or CM1502X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A' level or H2 pass in Chemistry or equivalent or CM1417 /CM1417X", + "corequisite": "" + }, + { + "moduleCode": "CM1502X", + "title": "General and Physical Chemistry for Engineers", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "CM1502, CM1502FC, Chemistry majors", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A' level or H2 pass in Chemistry or equivalent or CM1417 /CM1417X", + "corequisite": "" + }, + { + "moduleCode": "CM2101", + "title": "Physical Chemistry 2", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1131 Physical Chemistry 1", + "corequisite": "" + }, + { + "moduleCode": "CM2111", + "title": "Inorganic Chemistry 2", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1111", + "corequisite": "" + }, + { + "moduleCode": "CM2121", + "title": "Organic Chemistry 2", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1121 or by department approval", + "corequisite": "" + }, + { + "moduleCode": "CM2142", + "title": "Analytical Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1131 or FST1101 or CM1401 by department approval", + "corequisite": "" + }, + { + "moduleCode": "CM2161", + "title": "Principles of Chemical Process II", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1161", + "corequisite": "" + }, + { + "moduleCode": "CM2191", + "title": "Experiments in Chemistry 2", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1191 or by department approval.", + "corequisite": "" + }, + { + "moduleCode": "CM2192", + "title": "Experiments in Chemistry 3", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM2142", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1191 or by department approval.", + "corequisite": "" + }, + { + "moduleCode": "CM2192A", + "title": "Experiments in Chemistry 3A", + "moduleCredit": 2, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "CM2192", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1191 or FST1101 or by department approval", + "corequisite": "" + }, + { + "moduleCode": "CM2288", + "title": "Basic UROPS in Chemistry I", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "CM1111 or CM1121or CM1131; AND Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "CM2289", + "title": "Basic UROPS In Chemistry II", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "CM1111 or CM1121 or CM1131; and Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "CM3201", + "title": "Principles of Chemical Processes", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "CN1111, CM1161, CM2161", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1131, CM2101 and MA1421/MA1102R", + "corequisite": "" + }, + { + "moduleCode": "CM3211", + "title": "Organometallic Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2111", + "corequisite": "" + }, + { + "moduleCode": "CM3212", + "title": "Transition Metal Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2111", + "corequisite": "" + }, + { + "moduleCode": "CM3221", + "title": "Organic Synthesis: The Disconnection Approach", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2121", + "corequisite": "" + }, + { + "moduleCode": "CM3222", + "title": "Organic Reaction Mechanisms", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2121", + "corequisite": "" + }, + { + "moduleCode": "CM3225", + "title": "Biomolecules", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2121", + "corequisite": "" + }, + { + "moduleCode": "CM3231", + "title": "Quantum Chem & Molecular Thermodynamics", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101", + "corequisite": "" + }, + { + "moduleCode": "CM3232", + "title": "Phy Chem of the Solid State & Interfaces", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101", + "corequisite": "" + }, + { + "moduleCode": "CM3241", + "title": "Instrumental Analysis I", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2192", + "corequisite": "" + }, + { + "moduleCode": "CM3242", + "title": "Instrumental Analysis II", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2142 or CM2192 or LSM2191 or Department approval", + "corequisite": "" + }, + { + "moduleCode": "CM3251", + "title": "Nanochemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP2251", + "corequisite": "" + }, + { + "moduleCode": "CM3252", + "title": "Polymer Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CM2264, CM3262, CM3265, CM3266", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1131 and CM2121", + "corequisite": "" + }, + { + "moduleCode": "CM3253", + "title": "Materials Chemistry 1", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM2263 and CM3262", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1131 and CM2111", + "corequisite": "" + }, + { + "moduleCode": "CM3261", + "title": "Environmental Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2142 or CM2192", + "corequisite": "" + }, + { + "moduleCode": "CM3267", + "title": "Computational Thinking and Programming in Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Either (a) OR (b) below:\n(a) CM2191 Experiments in Chemistry 2 AND\nCM2192 Experiments in Chemistry 3\nOR\n(b) FST2102B Chemistry of Food Components", + "corequisite": "" + }, + { + "moduleCode": "CM3288", + "title": "Advanced UROPS in Chemistry I", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM3289", + "title": "Advanced UROPS in Chemistry II", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM3291", + "title": "Advanced Experiments In Organic & Inorganic Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2111, CM2121 and CM2191", + "corequisite": "" + }, + { + "moduleCode": "CM3292", + "title": "Advanced Experiments In Analytical & Physical Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "YSC2248", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101 and (CM2142 OR CM2192)", + "corequisite": "" + }, + { + "moduleCode": "CM3295", + "title": "Selected Experiments in Analytical Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "YSC2248", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2142 Analytical Chemistry 1 or CM2192 Experiments in Chemistry 3", + "corequisite": "" + }, + { + "moduleCode": "CM3296", + "title": "Molecular Modelling: Theory & Practice", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101", + "corequisite": "" + }, + { + "moduleCode": "CM3301", + "title": "Advanced Forensic Science", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEK1542", + "corequisite": "" + }, + { + "moduleCode": "CM3302", + "title": "Overseas Exploratory Project (Europe)", + "moduleCredit": 2, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM3303", + "title": "Overseas Exploratory Project (CHINA)", + "moduleCredit": 2, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Chemistry as first major and have completed a minimum of 32 MCs in Chemistry major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "CM3311", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Chemistry as first major and have completed a minimum of 32 MCs in Chemistry major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "CM3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Chemistry as first major and have completed a minimum of 32 MCs in Chemistry major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "CM3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared CM as first major and have completed a minimum of 32 MCs in CM major at the time of application and have completed CM3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "CM3974", + "title": "Physics and the Environment", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM4199A", + "title": "Honours Project in Chemistry", + "moduleCredit": 16, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "CM4299", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "At least an overall CAP of 3.50, on fulfillment of 100MC or more; and major requirements under the B.Sc. programme. ( Only for students entering NUS in or after 2002 ). Students from Cohort 2012 and onwards should have at least an overall CAP of 3.20, on fulfillment of 100MC or more; and major requirements under the B.Sc. programme.", + "corequisite": "" + }, + { + "moduleCode": "CM4199B", + "title": "Honours Project in Applied Chemistry", + "moduleCredit": 16, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "CM4299", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "At least an overall CAP of 3.50, on fulfillment of 100MC or more; and major requirements under the B.Sc. programme. ( Only for students entering NUS in or after 2002 ). Students from Cohort 2012 and onwards should have at least an overall CAP of 3.20, on fulfillment of 100MC or more; and major requirements under the B.Sc. programme.", + "corequisite": "" + }, + { + "moduleCode": "CM4201", + "title": "Directed Independent Study in Modern Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM4211", + "title": "Advanced Coordination Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3211 or CM3212", + "corequisite": "" + }, + { + "moduleCode": "CM4212", + "title": "Advanced Organometallic Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3211 or CM3212", + "corequisite": "" + }, + { + "moduleCode": "CM4214", + "title": "Structural Methods in Inorganic Chem", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3211 or CM3212", + "corequisite": "" + }, + { + "moduleCode": "CM4215", + "title": "Bioinorganic Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3211 or CM3212 or CM3268", + "corequisite": "" + }, + { + "moduleCode": "CM4225", + "title": "Organic Spectroscopy", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2121", + "corequisite": "" + }, + { + "moduleCode": "CM4227", + "title": "Chemical Biology", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "LSM4233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1121 or CM1401 and LSM1101 or LSM1401", + "corequisite": "" + }, + { + "moduleCode": "CM4228", + "title": "Catalysis", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2121", + "corequisite": "" + }, + { + "moduleCode": "CM4236", + "title": "Spectroscopy & Imaging in Biophysical Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101 Physical Chemistry 2", + "corequisite": "" + }, + { + "moduleCode": "CM4237", + "title": "Interfaces and the Liquid State", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3232 or by permission", + "corequisite": "" + }, + { + "moduleCode": "CM4238", + "title": "Selected Topics in Physical Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "CM4236 or CM4237", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101", + "corequisite": "" + }, + { + "moduleCode": "CM4241", + "title": "Trace Analysis", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3242 or by Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "CM4242", + "title": "Advanced Analytical Techniques", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3242 or by Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "CM4251", + "title": "Characterization Techniques in Materials Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3252 or CM3253", + "corequisite": "" + }, + { + "moduleCode": "CM4252", + "title": "Polymer Chemistry 2", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM4264, CM4265, CM4266, CM4268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3252", + "corequisite": "" + }, + { + "moduleCode": "CM4253", + "title": "Materials Chemistry 2", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM4266", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3253", + "corequisite": "" + }, + { + "moduleCode": "CM4254", + "title": "Chemistry of Semiconductors", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3232 or CM3253", + "corequisite": "" + }, + { + "moduleCode": "CM4258", + "title": "Advanced Polymer Science", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM4268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3252", + "corequisite": "" + }, + { + "moduleCode": "CM4261", + "title": "Surface Science", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2101", + "corequisite": "" + }, + { + "moduleCode": "CM4267", + "title": "Current Topics in Analytical Techniques", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3242", + "corequisite": "" + }, + { + "moduleCode": "CM4269", + "title": "Sustainable & Green Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1121 and CM1131 and (CM2121 or CM2101)", + "corequisite": "" + }, + { + "moduleCode": "CM4271", + "title": "Medicinal Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM2121 and CM3225", + "corequisite": "" + }, + { + "moduleCode": "CM4273", + "title": "Computational Drug Design", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "CM5236", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3221 or CM3222", + "corequisite": "" + }, + { + "moduleCode": "CM4274", + "title": "The Art and Methodology in Total Synthesis", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CM4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM3221", + "corequisite": "" + }, + { + "moduleCode": "CM4282", + "title": "Energy Resources", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1131 and CM1111", + "corequisite": "" + }, + { + "moduleCode": "CM4299", + "title": "Applied Project in Chemistry", + "moduleCredit": 16, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Pharmacy majors are precluded from reading this module. This module would preclude XX4199 and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for specific major.", + "corequisite": "" + }, + { + "moduleCode": "CM5100", + "title": "M.sc. Project", + "moduleCredit": 8, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "CM5100A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5100A", + "title": "Advanced MSc Project", + "moduleCredit": 16, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "CM5100", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5101", + "title": "Advanced Analysis and Characterization Techniques", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CM5201 – Practical Synthetic and Analytical Chemistry\n(this module has some analytical component similar to\nthe proposed module)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5151", + "title": "Energy Storage and Conversion Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5152", + "title": "Water Chemistry and Environment", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM5244 Advanced Topics in Environmental Chemistry", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5161", + "title": "Advanced Chemical Laboratory Safety", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5198", + "title": "Graduate Seminar Module in Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Graduate seminar modules by other departments", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Registered as a Graduate Student in the Department of Chemistry in either one of the following programmes:\n1) PhD in Chemistry\n2) MSc by Research in Chemistry\n3) MSc by Coursework in Chemistry", + "corequisite": "" + }, + { + "moduleCode": "CM5199", + "title": "M.Sc. R&D project", + "moduleCredit": 16, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5211", + "title": "Contemporary Organometallic Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM4212 or by permission", + "corequisite": "" + }, + { + "moduleCode": "CM5212", + "title": "Crystal Engineering", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM4214 or by Department Approval", + "corequisite": "" + }, + { + "moduleCode": "CM5221", + "title": "Advanced Organic Synthesis", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM4222 or by permission", + "corequisite": "" + }, + { + "moduleCode": "CM5223", + "title": "Topics in Supramolecular Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By permission", + "corequisite": "" + }, + { + "moduleCode": "CM5224", + "title": "Emerging Concepts in Drug Discovery", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By Department approval", + "corequisite": "" + }, + { + "moduleCode": "CM5225", + "title": "Asymmetric Catalysis", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Subject to departmental approval", + "corequisite": "" + }, + { + "moduleCode": "CM5232", + "title": "Topics in Chemical Kinetics", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By permission", + "corequisite": "" + }, + { + "moduleCode": "CM5237", + "title": "Advanced Optical Spectroscopy and Imaging", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5241", + "title": "Modern Analytical Techniques", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM4242 or by permission", + "corequisite": "" + }, + { + "moduleCode": "CM5244", + "title": "Topics in Environmental Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By Department approval", + "corequisite": "" + }, + { + "moduleCode": "CM5245", + "title": "Bioanalyticalchemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CM5262", + "title": "Contemporary Materials Chemistry", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By permission", + "corequisite": "" + }, + { + "moduleCode": "CM5268", + "title": "Advanced Organic Materials", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Applied Chemistry Students: Polymer Chemistry II (CM3221), Advanced Polymer Science (CM4268). For Chemistry students: Organic Reaction Mechanisms (CM3221).", + "corequisite": "" + }, + { + "moduleCode": "CM5731", + "title": "Environmental Chemistry for A-level Chemistry Teachers", + "moduleCredit": 1, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a Bachelor’s degree in Chemistry or a related subject", + "corequisite": "" + }, + { + "moduleCode": "CN1101", + "title": "Chemical Engineering Principles and Practice I", + "moduleCredit": 6, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN1101A", + "title": "Chemical Engineering Principles and Practice I", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CN1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN1102", + "title": "Chemical Engineering Principles and Practice II", + "moduleCredit": 6, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN1111", + "title": "Chemical Engineering Principles", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CM1161, CN1111FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Mathematics, H2 Chemistry and H2 Physics (or PC1221 Fundamentals of Physics I) or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CN1111E", + "title": "Chemical Engineering Principles", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC1101, TCN1111", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN1111X", + "title": "Chemical Engineering Principles", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN1111, CN1111FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Mathematics, H2 Chemistry and H2 Physics (or PC1221 Fundamentals of Physics I) or equivalent", + "corequisite": "" + }, + { + "moduleCode": "CN2101", + "title": "Material and Energy Balances", + "moduleCredit": 3, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN2102", + "title": "Chemical Engineering Principles and Practice II", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CN1102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN2108", + "title": "Chemical Engineering Process Laboratory I", + "moduleCredit": 2, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2121: Chemical Kinetics and Reactor Design\nCN2122: Fluid Mechanics\nLSM1401: Fundamentals of Biochemistry", + "corequisite": "" + }, + { + "moduleCode": "CN2116", + "title": "Chemical Kinetics & Reactor Design", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "CN2125: Heat and Mass Transfer" + }, + { + "moduleCode": "CN2116E", + "title": "Chemical Kinetics And Reactor Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC2106/ TCN2116", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC1101/ CN1111E", + "corequisite": "TC2115/ CN2125E" + }, + { + "moduleCode": "CN2121", + "title": "Chemical Engineering Thermodynamics", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN2121E", + "title": "Chemical Engineering Thermodynamics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC2111, TCN2121", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN1111E", + "corequisite": "" + }, + { + "moduleCode": "CN2122", + "title": "Fluid Mechanics", + "moduleCredit": 5, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505: Mathematics I\nMA1506: Mathematics II\nor\nMA1511: Engineering Calculus\nMA1512: Differential Equations for Engineering", + "corequisite": "" + }, + { + "moduleCode": "CN2122A", + "title": "Fluid Mechanics", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "CN2122", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Physics\nMA1511: Engineering Calculus\nMA1512: Differential Equations for Engineering", + "corequisite": "" + }, + { + "moduleCode": "CN2122E", + "title": "Fluid Mechanics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC2112, TCN2122", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2411", + "corequisite": "" + }, + { + "moduleCode": "CN2125", + "title": "Heat & Mass Transfer", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "CN2122/CN2122A: Fluid Mechanics" + }, + { + "moduleCode": "CN2125E", + "title": "Heat And Mass Transfer", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC2115, TCN2125", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2112/ CN2122E", + "corequisite": "" + }, + { + "moduleCode": "CN3101", + "title": "Chemical Engineering Process Lab I", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics & Reactor Design \nCN2121: Chemical Engineering Thermodynamics \nCN2122: Fluid Mechanics\nCN2125: Heat and Mass Transfer", + "corequisite": "" + }, + { + "moduleCode": "CN3102", + "title": "Chemical Engineering Process Lab II", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3121: Process Dynamics and Control\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN3108", + "title": "Chemical Engineering Process Laboratory II", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2108: Chemical Engineering Laboratory I\nCN2116: Chemical Kinetics and Reactor Design\nCN2125: Heat and Mass Transfer\nCN3124: Fluid-Solid Systems", + "corequisite": "" + }, + { + "moduleCode": "CN3109", + "title": "Chemical Engineering Process Laboratory III", + "moduleCredit": 2, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3121: Process Dynamics and Control\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN3121", + "title": "Process Dynamics & Control", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505: Mathematics I\nMA1506: Mathematics II\nor\nMA1511: Engineering Calculus\nMA1512: Differential Equations for Engineering\nMA1513: Linear Algebra with Differential Equations", + "corequisite": "" + }, + { + "moduleCode": "CN3121E", + "title": "Process Dynamics & Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC3111, TCN3121", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2411", + "corequisite": "" + }, + { + "moduleCode": "CN3124", + "title": "Fluid-Solid Systems", + "moduleCredit": 3, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "CN2122: Fluid Mechanics" + }, + { + "moduleCode": "CN3124A", + "title": "Fluid-Particle Systems", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "CN2122A: Fluid Mechanics" + }, + { + "moduleCode": "CN3124E", + "title": "Particle Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC3114, TCN3124", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2112/ CN2122E", + "corequisite": "" + }, + { + "moduleCode": "CN3132", + "title": "Separation Processes", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN1111: Chemical Engineering Principles\nCN2125: Heat and Mass Transfer\nor\nCN2101: Material and Energy Balances\nCN2121: Chemical Engineering Thermodynamics\nCN2125: Heat and Mass Transfer", + "corequisite": "" + }, + { + "moduleCode": "CN3132E", + "title": "Separation Processes", + "moduleCredit": 5, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC2113, TCN3132", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN1111E & CN2121E & CN2125E", + "corequisite": "" + }, + { + "moduleCode": "CN3135", + "title": "Process Safety, Health and Environment", + "moduleCredit": 3, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2121: Chemical Engineering Thermodynamics\nCN2122/CN2122A: Fluid Mechanics", + "corequisite": "" + }, + { + "moduleCode": "CN3135E", + "title": "Process Safety, Health and Environment", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TCN3135", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2121E & CN2122E", + "corequisite": "" + }, + { + "moduleCode": "CN3421", + "title": "Process Modeling And Numerical Simulation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505: Mathematics I\nMA1506: Mathematics II\nor\nMA1511: Engineering Calculus\nMA1512: Differential Equations for Engineering\nMA1513: Linear Algebra with Differential Equations", + "corequisite": "CN2116: Chemical Kinetics and Reactor Design" + }, + { + "moduleCode": "CN3421E", + "title": "Process Modeling & Numerical Simulation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC3411, TCN3421", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To pass the following: CN2116E, CN2121E and CN2125E", + "corequisite": "" + }, + { + "moduleCode": "CN4111E", + "title": "Process Design & Safety", + "moduleCredit": 5, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TC4211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4118", + "title": "B.Eng. Dissertation", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Students must pass/complete the following:\n1) CN3101: Chemical Engineering Laboratory I\n2) CN3121: Process Dynamics and Control \n3) CN3132: Separation Processes\n4) CN3135: Process Safety, Health and Environment\n5) CN3421: Process Modeling and Numerical Simulation\n\nIn addition, students have to pass the safety quiz in CN3108 or CN3101 lab before starting CN4118. Those who did not take or pass the safety quiz will not be allowed to start CN4118.", + "corequisite": "" + }, + { + "moduleCode": "CN4118E", + "title": "B.Tech. Dissertation", + "moduleCredit": 10, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC4118, CN4119E, TCN4119", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "TC1401 & TC1422 & CN1111E & TC1402/ TC2401 & TC2421 & CN2121E & CN2122E & CN2116E & CN2125E & CN3124E & CN3421E & CN3121E & CN3132E & CN4111E/CN3135E", + "corequisite": "" + }, + { + "moduleCode": "CN4118N", + "title": "Capstone Research Project", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN4118", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Host department will access whether students meet pre-requisite on a case-by-case basis.", + "corequisite": "" + }, + { + "moduleCode": "CN4118R", + "title": "B.Eng. Dissertation", + "moduleCredit": 10, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "CN3108 and at least 4 of the 5 core modules: CN3121, CN3124, CN3132, CN3135 and CN3421, or approved by the Head of the Department", + "corequisite": "" + }, + { + "moduleCode": "CN4119E", + "title": "B.Tech. Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TCN4119, CN4118E", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "All Level 3000 Essential Modules", + "corequisite": "" + }, + { + "moduleCode": "CN4122", + "title": "Process Synthesis and Simulation", + "moduleCredit": 3, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design\nCN2121: Chemical Engineering Thermodynamics\nCN3124: Particle Technology\nCN3132: Separation Processes\nor\nCN2116: Chemical Kinetics and Reactor Design\nCN2121: Chemical Engineering Thermodynamics\nCN2122/CN2122A: Fluid Mechanics\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4122E", + "title": "Process Synthesis and Simulation", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TCN4122", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116E Chemical Kinetics and Reactor Design\nCN2121E Chemical Engineering Thermodynamics\nCN3124E Particle Technology\nCN3132E Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4122N", + "title": "Process Synthesis and Simulation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN4122 Process Synthesis and Simulation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Host department will access whether students meet pre-requisite on a case-by-case basis.", + "corequisite": "" + }, + { + "moduleCode": "CN4123", + "title": "Design Project", + "moduleCredit": 7, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3135: Process Safety, Health and Environment\nCN3421: Process Modelling & Numerical Simulation\nCN4122: Process Synthesis and Simulation\nEG2401: Engineering Professionalism", + "corequisite": "" + }, + { + "moduleCode": "CN4123E", + "title": "Design Project", + "moduleCredit": 7, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "CN3135E Process Safety, Health and Environment\nCN3421E Process Modelling & Numerical Simulation\nCN4122E Process Synthesis and Simulation\nTG2415 Ethics in Engineering", + "corequisite": "" + }, + { + "moduleCode": "CN4123R", + "title": "Final Year Design Project", + "moduleCredit": 6, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3135: Process Safety, Health and Environment\nCN4122: Process Synthesis and Simulation\nEG2401/EG2401A: Engineering Professionalism", + "corequisite": "" + }, + { + "moduleCode": "CN4124E", + "title": "Final Year Design Project", + "moduleCredit": 6, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TCN4124", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "CN3135E Process Safety, Health and Environment\nCN3421E Process Modelling & Numerical Simulation\nCN4122E Process Synthesis and Simulation\nTG2415 Ethics in Engineering", + "corequisite": "" + }, + { + "moduleCode": "CN4201R", + "title": "Petroleum Refining", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4203E", + "title": "Polymer Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN4203", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4203R", + "title": "Polymer Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4205E", + "title": "Pinch Analysis and Process Integration", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TCN4205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2125E Heat and Mass Transfer, CN3421E Process Modelling and Numerical Simulation.", + "corequisite": "" + }, + { + "moduleCode": "CN4205R", + "title": "Pinch Analysis and Process Integration", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CN2125: Heat and Mass Transfer\nCN3421/CN3421A: Process Modelling and Numerical Simulation", + "corequisite": "" + }, + { + "moduleCode": "CN4207R", + "title": "Business Skills for Oil & Petrochemical Industry", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4208E", + "title": "Biochemical Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN4208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2106 / CN2116E & TC2112 / CN2122E", + "corequisite": "" + }, + { + "moduleCode": "CN4210E", + "title": "Membrane Science And Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TC4210, TCN4210", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4211E", + "title": "Petrochemicals & Processing Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TC4211, TCN4211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4211R", + "title": "Petrochemicals and Processing Technology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design\nCN2121: Chemical Engineering Thermodynamics", + "corequisite": "" + }, + { + "moduleCode": "CN4213", + "title": "Introduction to Advanced Porous Materials", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4215E", + "title": "Food Technology And Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TC4215, TCN4215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2122E & CN3132E", + "corequisite": "" + }, + { + "moduleCode": "CN4215R", + "title": "Food Technology and Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2125: Heat and Mass Transfer\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4216E", + "title": "Electronic Materials Science", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TC4216, TCN4216", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC1422", + "corequisite": "" + }, + { + "moduleCode": "CN4216R", + "title": "Electronic Materials Science", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4217E", + "title": "Processing of Microelectronic Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN4217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC1422", + "corequisite": "" + }, + { + "moduleCode": "CN4217R", + "title": "Processing of Microelectronic Materials", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4218", + "title": "Particle Technology Fundamentals and Applications", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4221R", + "title": "Control of Industrial Processes", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CN3121: Process Dynamics and Control\nCN4122: Process Synthesis and Simulation", + "corequisite": "" + }, + { + "moduleCode": "CN4223R", + "title": "Microelectronic Thin Films", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4227E", + "title": "Advanced Process Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC4227, TCN4227", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC3111/ CN3121E", + "corequisite": "" + }, + { + "moduleCode": "CN4227R", + "title": "Advanced Process Control", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3121: Process Dynamics and Control", + "corequisite": "" + }, + { + "moduleCode": "CN4229E", + "title": "Computer Aided Chemical Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN4229", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3421E", + "corequisite": "" + }, + { + "moduleCode": "CN4231E", + "title": "Downstream Processing of Biochemical and Pharmaceutical Products", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN4231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4233E", + "title": "Good Manufacturing Practices in Pharmaceutical Industry", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CN4233R Good Manufacturing Practices in\nPharmaceutical Industry\nPR2143 Pharmaceutical Analysis for Quality Assurance\nPR3145 Compliance & Good Practices in Pharmacy\nPR4206 Industrial Pharmacy\nTCN4233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2122E Fluid Mechanics; CN2125E Heat and Mass\nTransfer", + "corequisite": "" + }, + { + "moduleCode": "CN4233R", + "title": "Good Manufacturing Practices in Pharmaceutical Industry", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "PR2143 Pharmaceutical Analysis for Quality Assurance\nPR3145 Compliance & Good Practices in Pharmacy\nPR4206 Industrial Pharmacy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2108: Chemical Engineering Laboratory I\nLSM1401: Fundamentals of Biochemistry\nor\nCN1102/CN2102: Chemical Engineering Principles and Practice II\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4238E", + "title": "Chemical & Biochemical Process Modeling", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN4238", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN1111E & CN3421E", + "corequisite": "" + }, + { + "moduleCode": "CN4238R", + "title": "Chemical & Biochemical Process Modeling", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "CN3421/CN3421A: Process Modeling and Numerical Simulation" + }, + { + "moduleCode": "CN4240E", + "title": "Unit Operations and Processes for Effluent Treatment", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TCN4240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4240R", + "title": "Unit Operations and Processes for Effluent Treatment", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design", + "corequisite": "" + }, + { + "moduleCode": "CN4241R", + "title": "Engineering Principles for Drug Delivery", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4242E", + "title": "Optimization of Chemical Processes", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TCN4242", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2411, CN3421E", + "corequisite": "" + }, + { + "moduleCode": "CN4245R", + "title": "Data Based Process Characterisation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN3121: Process Dynamics and Control", + "corequisite": "" + }, + { + "moduleCode": "CN4246E", + "title": "Chemical And Bio-Catalysis", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TCN4246", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4246R", + "title": "Chemical and Bio Catalysis", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design", + "corequisite": "" + }, + { + "moduleCode": "CN4247R", + "title": "Enzyme Technology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design", + "corequisite": "" + }, + { + "moduleCode": "CN4248", + "title": "Sustainable Process Development", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4249", + "title": "Engg. Design in Molecular Biotechnology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN4250", + "title": "Chemical Product Design", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design\nCN3132: Separation Processes\nCN3135: Process Safety, Health and Environment", + "corequisite": "EG2401/EG2401A: Engineering Professionalism" + }, + { + "moduleCode": "CN4251", + "title": "Troubleshooting with Case Studies for Process Engineers", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116: Chemical Kinetics and Reactor Design\nCN2121: Chemical Engineering Thermodynamics\nCN2125: Heat and Mass Transfer\nCN3132: Separation Processes", + "corequisite": "" + }, + { + "moduleCode": "CN4291", + "title": "Selected Topics in Chemical Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CN2116 Chemical Kinetics and Reactor Design\nCN3124 Particle Technology\nCN3132 Separation Processes\nCN3135 Process Safety, Health and Environment\nCN3421 Process Modelling and Numerical Simulation", + "corequisite": "" + }, + { + "moduleCode": "CN5010", + "title": "Mathematical & Computing Methods for Chemical Engineers", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5020", + "title": "Advanced Reaction Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5030", + "title": "Advanced Chemical Engineering Thermodynamics", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5040", + "title": "Advanced Transport Phenomena", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5050", + "title": "Advanced Separation Processes", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5111", + "title": "Optimization of Chemical Processes", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5111B", + "title": "Process Optimization with Industrial Applications", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Calculus, linear algebra and numerical methods at undergraduate level", + "corequisite": "" + }, + { + "moduleCode": "CN5131", + "title": "Colloids & Surfaces", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5161", + "title": "Polymer Processing Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CN4203", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5162", + "title": "Advanced Polymeric Materials", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5172", + "title": "Biochemical Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CN4208", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5173", + "title": "Downstream Processing of Biochemical & Pharmaceutical Products", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CN4231", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "CN3132", + "corequisite": "" + }, + { + "moduleCode": "CN5181", + "title": "Computer Aided Chemical Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN4229", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5191", + "title": "Project Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "CN4225", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5192", + "title": "Future Fuel Options: Prospects and Technologies", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5193", + "title": "Instrumental Methods of Analysis", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5215", + "title": "Atomistic Modelling of Molecules and Materials", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5222", + "title": "Pharmaceuticals & Fine Chemicals", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN4232", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5251", + "title": "Membrane Science & Technology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5252", + "title": "Metabolic Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Linear algebra and numerical methods at undergraduate level, Fundamentals of Biochemistry", + "corequisite": "" + }, + { + "moduleCode": "CN5371", + "title": "Special Topics in Biochemical Engineering and Bioseparations", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5391", + "title": "Selected Topics in Advanced Chemical Engineering I", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5392", + "title": "Selected Topics in Advanced Chemical Engineering II", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5401", + "title": "Contemporary Topics in Advanced Chemical Engineering", + "moduleCredit": 2, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5555", + "title": "Chemical Engineering Project", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN6020", + "title": "Advanced Reaction Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN6162", + "title": "Advanced Polymeric Materials", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CN5162", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN6163", + "title": "Inorganic Nanomaterials for Sustainability", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CN5020 Advanced Reaction Engineering, or CN5030 Advanced Chem Eng Thermodynamics, or equivalent, or Lecturers' Permission. This module is designed for Ph.D. and M.Eng. students.", + "corequisite": "" + }, + { + "moduleCode": "CN6222", + "title": "Pharmaceuticals & Fine Chemicals", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN4232 and CN5222", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN6251", + "title": "Membrane Science & Technology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CN5251", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CN6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "COS2000", + "title": "Computational Thinking for Scientists", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP2106", + "title": "Independent Software Development Project (Orbital)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2103 Software Engineering or its equivalent", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 Programming Methodology or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CP2201", + "title": "Journey of the Innovator", + "moduleCredit": 2, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP2202", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "Full-time undergraduate students who have accumulated more than 12 MCs for previous internship stints.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "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.", + "corequisite": "" + }, + { + "moduleCode": "CP3101", + "title": "Topics in Computing", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the topic being offered.", + "corequisite": "" + }, + { + "moduleCode": "CP3101A", + "title": "Global Open Source Project", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CP3106", + "title": "Independent Project", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CS2102 or CS2102S) and CS2105 and read (CS3214 or CS3215)] or IS3102 or IS4102 or CS3201 or CS3281 or CS4201 or CS4203", + "corequisite": "" + }, + { + "moduleCode": "CP3107", + "title": "Computing for Voluntary Welfare Organisations", + "moduleCredit": 6, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2010 or CS2020 or (((CS2030 or its equivalent) or CS2113/T) and CS2040/C). Student selection process will be enforced.", + "corequisite": "" + }, + { + "moduleCode": "CP3108A", + "title": "Independent Work", + "moduleCredit": 2, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS3108A", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP3108B", + "title": "Independent Work", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS3108B", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP3109", + "title": "Overseas Exploratory Project", + "moduleCredit": 2, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3109", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP3110", + "title": "Computing for Voluntary Welfare Organisations II", + "moduleCredit": 6, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CP3107", + "corequisite": "" + }, + { + "moduleCode": "CP3200", + "title": "Internship", + "moduleCredit": 6, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students can only take this module after completing 70\nMCs. Student Selection process will be enforced", + "corequisite": "Students can only take this module after completing 70" + }, + { + "moduleCode": "CP3201", + "title": "Industry Seminar", + "moduleCredit": 2, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students can only take this module after completing 70 MCs", + "corequisite": "" + }, + { + "moduleCode": "CP3202", + "title": "Internship II", + "moduleCredit": 6, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CP3200 Internship", + "corequisite": "" + }, + { + "moduleCode": "CP3208", + "title": "Undergraduate Research in Computing I", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS3208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SoC students who have passed at least 60 MCs and with approval from respective department.", + "corequisite": "" + }, + { + "moduleCode": "CP3209", + "title": "Undergraduate Research Project in Computing", + "moduleCredit": 8, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed 60MCs", + "corequisite": "" + }, + { + "moduleCode": "CP3880", + "title": "Advanced Technology Attachment Programme", + "moduleCredit": 12, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "EG3601", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(IS2101 Business and Technical Communication or CS2101 Effective Communication for Computing Professionals or their equivalents)\nand\n(CS2103/CS2103T Software Engineering or IS2103 Enterprise Systems Development Concepts or IS2150 E-Business Design and Implementation or BT2101 IT and Decision Making)", + "corequisite": "" + }, + { + "moduleCode": "CP3881", + "title": "Incubation Project", + "moduleCredit": 12, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3881", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP4101", + "title": "B.Comp. Dissertation", + "moduleCredit": 12, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS4101", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Attain at least 70% of the MC requirement for the respective degree", + "corequisite": "" + }, + { + "moduleCode": "CP4106", + "title": "Computing Project", + "moduleCredit": 8, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CG4001, BT4101, CP4101, or any Integrated Honours Thesis/Project/Dissertation module", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 112 MCs for the respective degree.", + "corequisite": "" + }, + { + "moduleCode": "CP5010", + "title": "Graduate Research Paper", + "moduleCredit": 0, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP5101", + "title": "MComp Dissertation", + "moduleCredit": 16, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "- CP5102 (MComp Information Security Project - 8MC)\n- CP5103 (Master of Computing Project – 8MC)\n- CP5104 (Graduate Project in Computing – 4MC)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CP5102", + "title": "MComp Information Security Project", + "moduleCredit": 8, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be in Master of Computing programme, Infocomm Security specialisation", + "corequisite": "" + }, + { + "moduleCode": "CP5103", + "title": "Master of Computing Project", + "moduleCredit": 8, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CP5101 (MComp Dissertation), CP5102 (MComp\nInformation Security Project) or any project/ dissertation\nmodule.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be in Master of Computing programme.", + "corequisite": "" + }, + { + "moduleCode": "CP5104", + "title": "Graduate Project in Computing", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CP5101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Student must be enrolled in a postgraduate programme.", + "corequisite": "" + }, + { + "moduleCode": "CP6010", + "title": "Doctoral Seminar", + "moduleCredit": 0, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1010", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1010E, CS1010J, CS1010S, CS1010X, CS1010XCP, CS1101S", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1010E", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1010, CS1010J, CS1010S, CS1010X, CS1010XCP, CS1101S", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1010J", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS1010 and its equivalents", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1010R", + "title": "Programming Methodology", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CG1101, CS1010, CS1010E, CS1101, CS1101C, CZ1102, IT1002, Engineering students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS1010S", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1010, CS1010E, CS1010J, CS1010X, CS1010XCP, CS1101S", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1010X", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS1010 or its equivalent, CS1010FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1010XCP", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1010 or its equivalent, CS1010FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1020", + "title": "Data Structures and Algorithms I", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1020E, CS2020, CS2030, CS2040, CS2040C", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 Programming Methodology", + "corequisite": "" + }, + { + "moduleCode": "CS1020E", + "title": "Data Structures and Algorithms I", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1020, CS2020, CS2030, CS2040, CS2040C", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010E or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS1101S", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1010 or its equivalents", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1105A", + "title": "Computing and Society", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS1231", + "title": "Discrete Structures", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1100, CS1231S", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Mathematics or H2 Mathematics or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "CS1231R", + "title": "Discrete Structures", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "MA1100", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS1231S", + "title": "Discrete Structures", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1100 and CS1231 or its equivalent", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Mathematics or H2 Mathematics or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "CS1300", + "title": "Unrestricted Electives for Poly Candidates", + "moduleCredit": 8, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS2002", + "title": "External Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS2003", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS2004", + "title": "Exchange CS Module", + "moduleCredit": 1, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS2006", + "title": "Exchange CS Module", + "moduleCredit": 3, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS2010", + "title": "Data Structures and Algorithms II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS2020, CS2030, CS2040, CS2040C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1020 or CS1020E or CG1103 Data Structures and Algorithms I", + "corequisite": "" + }, + { + "moduleCode": "CS2010R", + "title": "Data Structures and Algorithms II", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CG1102, CS1102, CS1102C, CS1102S, CS2020", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2020", + "title": "Data Structures and Algorithms Accelerated", + "moduleCredit": 6, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1020, CS1020E, CS2010, CS2030, CS2040, CS2040C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Obtain a grade of at least A- in either CS1010 or CS1101S or CS1010S or CS1010FC or their equivalents", + "corequisite": "Obtain a grade of at least A− in either CS1010 or CS1101S Programming Methodology" + }, + { + "moduleCode": "CS2030", + "title": "Programming Methodology II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2030S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS2030S", + "title": "Programming Methodology II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2030", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS2040", + "title": "Data Structures and Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1020, CS1020E, CS2020, CS2010, CS2040C, CS2040S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS2040C", + "title": "Data Structures and Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1020, CS1020E, CS2020, CS2010, CS2040, CS2040S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS2040S", + "title": "Data Structures and Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1020, CS1020E, CS2020, CS2010, CS2040, CS2040C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1100 or (CS1231 or its equivalent)) and (CS1010 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS2100", + "title": "Computer Organisation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1104 or Students from Department of ECE", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS2100R", + "title": "Computer Organisation", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1104 or Students from Department of ECE", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2101", + "title": "Effective Communication for Computing Professionals", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2103 Software Engineering, IS2101 Business Technical Communication or its equivalent, ES2002, ES2007D, and ES1601.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students have to complete ES1000 and/or ES1103 (if required to take the module/s) before reading this module.", + "corequisite": "Students have to read CS2103T Software Engineering at the same time as this module." + }, + { + "moduleCode": "CS2102", + "title": "Database Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2102S, IT2002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS1020 or its equivalent) or CS2020 or (CS2030 or its equivalent) or (CS2040 or its equivalent)) \nand (MA1100 or (CS1231 or its equivalent))", + "corequisite": "" + }, + { + "moduleCode": "CS2102R", + "title": "Database Systems", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS2102S, IT2002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) and (CS1231 or MA1100)", + "corequisite": "" + }, + { + "moduleCode": "CS2103", + "title": "Software Engineering", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2103T, CS2113, CS2113T", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or CS2020 or ((CS2030 or its equivalent) and (CS2040 or its equivalent))", + "corequisite": "" + }, + { + "moduleCode": "CS2103R", + "title": "Software Engineering", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2103T", + "title": "Software Engineering", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2103, CS2113, CS2113T, IS2101 or its equivalent.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SoC students only. (CS1020 or its equivalent) or CS2020 or ((CS2030 or its equivalent) and (CS2040 or its equivalent))", + "corequisite": "Students have to read CS2101 Effective Communication for Computing Professionals at the same time as this module" + }, + { + "moduleCode": "CS2104", + "title": "Programming Language Concepts", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or CS2020 or (CS2030 or its equivalent) or CS2113/T", + "corequisite": "" + }, + { + "moduleCode": "CS2104R", + "title": "Programming Language Concepts", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2105", + "title": "Introduction to Computer Networks", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "IT2001, EE3204/E, EE4204/E, EE4210/E. CEG, CPE and EEE students are not allowed to take this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or CS2020 or (CS2040 or its equivalents)", + "corequisite": "" + }, + { + "moduleCode": "CS2105R", + "title": "Introduction to Computer Networks", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2106", + "title": "Introduction to Operating Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CG2271 or EE4214. CEG students are not allowed to take this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2100 or EE2007 or EE2024 or EE2028", + "corequisite": "" + }, + { + "moduleCode": "CS2106R", + "title": "Introduction to Operating Systems", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CG2271 or EE4214. CEG students are not allowed to take this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2107", + "title": "Introduction to Information Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010 or its equivalence", + "corequisite": "" + }, + { + "moduleCode": "CS2108", + "title": "Introduction to Media Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS3246", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or CS2020 or (CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS2113", + "title": "Software Engineering & Object-Oriented Programming", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2103, CS2103T, (CS2113T for CS2113), (CS2113 for CS2113T)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2040C or ((CS2030 or its equivalent) and CS2040/S)", + "corequisite": "CS2101 Effective Communication for Computing Professionals is co-requisite for CS2113T. Students exempted from CS2101 will take CS2113 which does not have CS2101 as co-req. Otherwise, CS2113 and CS2113T are identical." + }, + { + "moduleCode": "CS2113T", + "title": "Software Engineering & Object-Oriented Programming", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2103, CS2103T, (CS2113T for CS2113), (CS2113 for CS2113T)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2040C or ((CS2030 or its equivalent) and CS2040/S)", + "corequisite": "CS2101 Effective Communication for Computing Professionals is co-requisite for CS2113T. Students exempted from CS2101 will take CS2113 which does not have CS2101 as co-req. Otherwise, CS2113 and CS2113T are identical." + }, + { + "moduleCode": "CS2220", + "title": "Introduction to Computational Biology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or CS2020 or (CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS2220R", + "title": "Introduction to Computational Biology", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS2309", + "title": "CS Research Methodology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS2305S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or its equivalent) or CS2020 or ((CS2030 or its equivalent) or CS2113/T) and (CS2040 or its equivalent))\nand \n(MA1100 or (CS1231 or its equivalent))", + "corequisite": "" + }, + { + "moduleCode": "CS3001", + "title": "External Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS3002", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS3003", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS3004", + "title": "Exchange CS Module", + "moduleCredit": 1, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS3005", + "title": "Exchange CS Module", + "moduleCredit": 2, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS3006", + "title": "Exchange CS Module", + "moduleCredit": 3, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS3103", + "title": "Computer Networks Practice", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2105 or EE3204/E or EE4204", + "corequisite": "" + }, + { + "moduleCode": "CS3201", + "title": "Software Engineering Project I", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2103 or its equivalent) and (CS2101 or IS2101)", + "corequisite": "CS3202 Software Engineering Project II" + }, + { + "moduleCode": "CS3201R", + "title": "Software Engineering Project I", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "CS3202 Software Engineering Project II" + }, + { + "moduleCode": "CS3202", + "title": "Software Engineering Project II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3215 Software Engineering Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 Software Engineering or its equivalent.", + "corequisite": "CS3201 Software Engineering Project I" + }, + { + "moduleCode": "CS3202R", + "title": "Software Engineering Project II", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3215 Software Engineering Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3203", + "title": "Software Engineering Project", + "moduleCredit": 8, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS3201, CS3202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2103/T or CS2113/T)", + "corequisite": "" + }, + { + "moduleCode": "CS3210", + "title": "Parallel Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2100 or CG2007 or CG2028 or EE2024 or EE2028", + "corequisite": "" + }, + { + "moduleCode": "CS3211", + "title": "Parallel and Concurrent Programming", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2106 or CG2271", + "corequisite": "" + }, + { + "moduleCode": "CS3216", + "title": "Software Product Engineering for Digital Markets", + "moduleCredit": 5, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent or with special approval from instructor. Students will submit personal statements to apply for a place in the course instead of bidding through the CORS system.", + "corequisite": "" + }, + { + "moduleCode": "CS3217", + "title": "Software Engineering on Modern Application Platforms", + "moduleCredit": 5, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent or with special approval from instructor. Students will submit personal statements to apply for a place in the course instead of bidding through the CORS system.", + "corequisite": "" + }, + { + "moduleCode": "CS3218", + "title": "Multimodal Processing in Mobile Platforms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS1020 or its equivalent) or \n(CS2030 or its equivalent) or \n(CS2040 or its equivalent)) and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521)", + "corequisite": "" + }, + { + "moduleCode": "CS3219", + "title": "Software Engineering Principles and Patterns", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS3213 Software Systems Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS3219R", + "title": "Software Engineering Principles and Patterns", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3213 Software Systems Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3220", + "title": "Computer Architecture", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "EEE & CPE students are not allowed to take this module as cfm/breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2106", + "corequisite": "" + }, + { + "moduleCode": "CS3221", + "title": "Operating Systems Design and Pragmatics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) and CS2106", + "corequisite": "" + }, + { + "moduleCode": "CS3223", + "title": "Database Systems Implementation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS2010 or its equivalent) or CS2020 or (CS2040 or its equivalent)) and (CS2102 or IT2002)", + "corequisite": "" + }, + { + "moduleCode": "CS3223R", + "title": "Database Systems Implementation", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3225", + "title": "Combinatorial Methods in Bioinformatics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or CS2040 or CS2040C) and (CS2220 or LSM2104)", + "corequisite": "" + }, + { + "moduleCode": "CS3226", + "title": "Web Programming and Applications", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CP3101B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2010 or CS2020 or (CS2030 or its equivalent) or CS2113/T", + "corequisite": "" + }, + { + "moduleCode": "CS3230", + "title": "Design and Analysis of Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "EEE and CPE students can only take this module as a technical elective to satisfy the program requirements or UEM but not CFM/ULR-Breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS2010 or its equivalent) or CS2020 or (CS2040 or its equivalent)) and (MA1100 or (CS1231 or its equivalent))", + "corequisite": "" + }, + { + "moduleCode": "CS3230R", + "title": "Design and Analysis of Algorithms", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read host module. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3233", + "title": "Competitive Programming", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least grade A- in (CS2010 or CS2020 or (both CS2030 and CS2040)) or special permission", + "corequisite": "" + }, + { + "moduleCode": "CS3233R", + "title": "Competitive Programming", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3234", + "title": "Logic for Proofs and Programs", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1100 or (CS1231 or its equivalent); Programming experience is preferred.", + "corequisite": "" + }, + { + "moduleCode": "CS3234R", + "title": "Logic and Formal Systems", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3235", + "title": "Computer Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2105 or EE3204 or EE4204) and (CS2106 or CG2271) and CS2107", + "corequisite": "" + }, + { + "moduleCode": "CS3236", + "title": "Introduction to Information Theory", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1100 or (CS1231 or its equivalent)) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS3236R", + "title": "Introduction to Information Theory", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "same as CS3236", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3237", + "title": "Introduction to Internet of Things", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010 or equivalent) and (CG2028 or CS2100 or EE2024 or EE2028)", + "corequisite": "" + }, + { + "moduleCode": "CS3240", + "title": "Interaction Design", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or CS2020 or (CS2030 or its equivalent) or CS2113/T or NM3209 or NM2207/Y", + "corequisite": "" + }, + { + "moduleCode": "CS3240R", + "title": "Interaction Design", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3241", + "title": "Computer Graphics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "EEE and CPE students can only take this module as a technical elective to satisfy the program requirements or UEM but not CFM/ULR-Breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or its equivalent) or CS2020 or (((CS2030 or its equivalent) or CS2113/T) and ((CS2040 or its equivalent)))", + "corequisite": "" + }, + { + "moduleCode": "CS3241R", + "title": "Computer Graphics", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3242", + "title": "3D Modeling and Animation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS4342", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3241 and (PC1221 or PC1221X) and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521)", + "corequisite": "" + }, + { + "moduleCode": "CS3243", + "title": "Introduction to Artificial Intelligence", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "EEE and CPE students can only take this module as a technical elective to satisfy the program requirements or UEM but not CFM/ULR-Breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS2010 or its equivalent) or CS2020 or (CS2040 or its equivalent))\nand (MA1100 or (CS1231 or its equivalent))", + "corequisite": "" + }, + { + "moduleCode": "CS3243R", + "title": "Introduction to Artificial Intelligence", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "EEE and CPE students can only take this module as a technical elective to satisfy the program requirements or UEM but not CFM/ULR-Breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3244", + "title": "Machine Learning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "IT3011, BT4240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or CS2040 or its equivalent) and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS3244R", + "title": "Machine Learning", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3245", + "title": "Information Retrieval", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or its equivalent) or CS2020 or (CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS3245R", + "title": "Information Retrieval", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3247", + "title": "Game Development", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3241", + "corequisite": "" + }, + { + "moduleCode": "CS3249", + "title": "User Interface Development", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS3271", + "title": "Software Engineering for Reactive Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "EE3304, EE/CPE students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2271 or CS2271", + "corequisite": "" + }, + { + "moduleCode": "CS3281", + "title": "Thematic Systems Project I", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2103 or its equivalent) and have passed at least one primary module in a CS focus area. Student selection process will be enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3281R", + "title": "Thematic Systems Project I", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3282", + "title": "Thematic Systems Project II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3281 and have passed at least two primary modules in a CS focus area. Student selection process will be enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3282R", + "title": "Thematic Systems Project II", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS3283", + "title": "Media Technology Project I", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4201, CS4202, CS4203, CS4204.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SoC students: (CS2103 or CS2103T) and (CS3218 or CS3240 or CS3241 or CS3242 or CS3245 or CS3246 or CS3247 or CS3249 or module approved by Department of Computer Science); Other students: NM3216 or NM3221 or NM3226 or NM3227 or NM3231 or the prerequisites for SoC students", + "corequisite": "" + }, + { + "moduleCode": "CS3284", + "title": "Media Technology Project II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4201, CS4202, CS4203, CS4204.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3283 Media Technology Project I", + "corequisite": "" + }, + { + "moduleCode": "CS3882", + "title": "Breakthrough Ideas for Digital Markets", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Read and passed 80 MCs of modules. Students from Engineering, Science, and FASS with sufficient computing background and have read and passed 80 MCs of module may also apply to read. Student selection process will be enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4001", + "title": "SEP Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4002", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4003", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4004", + "title": "Exchange CS Module", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4005", + "title": "Exchange CS Module", + "moduleCredit": 2, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4007", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4008", + "title": "Exchange CS Module", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS4211", + "title": "Formal Methods for Software Engineering", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS4212", + "title": "Compiler Design", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2104 Programming Language", + "corequisite": "" + }, + { + "moduleCode": "CS4214", + "title": "Formal Semantics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2104 or CS3212 or CS3234", + "corequisite": "" + }, + { + "moduleCode": "CS4215", + "title": "Programming Language Implementation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or its equivalent) or CS2020 or (((CS2030 or its equivalent) or CS2113/T) and ((CS2040 or its equivalent)))", + "corequisite": "" + }, + { + "moduleCode": "CS4215R", + "title": "Programming Language Implementation", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4216", + "title": "Constraint Logic Programming", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2104 Programming Language Concepts.", + "corequisite": "" + }, + { + "moduleCode": "CS4218", + "title": "Software Testing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3219 Software Engineering Principles and Patterns.", + "corequisite": "" + }, + { + "moduleCode": "CS4220", + "title": "Knowledge Discovery Methods in Bioinformatics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2220 or LSM2241", + "corequisite": "" + }, + { + "moduleCode": "CS4220R", + "title": "Knowledge Discovery Methods in Bioinformatics", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4221", + "title": "Database Applications Design and Tuning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS5421", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS4222", + "title": "Wireless Networking", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS5422", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2105 or EE3204/E or EE4204) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4223", + "title": "Multi-core Architectures", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2106 Operating Systems or CG2271 Realtime Operating Systems) and (CS3210 Parallel Computing or CS3220 Computer Architecture or CG3207 Computer Architecture).", + "corequisite": "" + }, + { + "moduleCode": "CS4223R", + "title": "Multi-core Architectures", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4224", + "title": "Distributed Databases", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS5424", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS4225", + "title": "Big Data Systems for Data Science", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "BT4221 and CS5425", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2102 or IT2002", + "corequisite": "" + }, + { + "moduleCode": "CS4226", + "title": "Internet Architecture", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2105 or EE3204 or EE4204) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4231", + "title": "Parallel and Distributed Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 Design and Analysis of Algorithms or CS3210 Parallel Computing", + "corequisite": "" + }, + { + "moduleCode": "CS4232", + "title": "Theory of Computation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1231 or CS1231S or any level-2 MA module", + "corequisite": "" + }, + { + "moduleCode": "CS4232R", + "title": "Theory of Computation", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4234", + "title": "Optimisation Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 and \n(MA1101R or MA1311 or MA1508E or MA1513)", + "corequisite": "" + }, + { + "moduleCode": "CS4234R", + "title": "Optimisation Algorithms", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4235", + "title": "Computational Geometry", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 and (MA1101R or MA1506)", + "corequisite": "" + }, + { + "moduleCode": "CS4236", + "title": "Cryptography Theory and Practice", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS2010 or its equivalent) or CS2020 or (CS2040 or its equivalent)) and (MA1100 or (CS1231 or its equivalent)) and CS2107", + "corequisite": "" + }, + { + "moduleCode": "CS4238", + "title": "Computer Security Practice", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235 Computer Security", + "corequisite": "" + }, + { + "moduleCode": "CS4239", + "title": "Software Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS5439", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235 Computer Security and (CS2103 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS4240", + "title": "Interaction Design for Virtual and Augmented Reality", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3240 and (MA1301 or A-level / H2 Mathematics)", + "corequisite": "" + }, + { + "moduleCode": "CS4240R", + "title": "Interaction Design for Virtual and Augmented Reality", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4241", + "title": "Multimedia Information Retrieval", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3245 Information Retrieval and CS3246 Hypermedia and World Wide Web", + "corequisite": "" + }, + { + "moduleCode": "CS4242", + "title": "Social Media Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2108 Introduction to Media Computing and CS3245 Information Retrieval.", + "corequisite": "" + }, + { + "moduleCode": "CS4243", + "title": "Computer Vision and Pattern Recognition", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "EE4212 Computer Vision", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS1020 or its equivalent) or (((CS2030 or its equivalent) or CS2113/T) and (CS2040 or its equivalent))) and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521) and \n(EE2012/A or MA2216 or ST1131/A or ST1232 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4243R", + "title": "Computer Vision and Pattern Recognition", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4244", + "title": "Knowledge Representation and Reasoning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243", + "corequisite": "" + }, + { + "moduleCode": "CS4246", + "title": "AI Planning and Decision Making", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS5446", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243 and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS4246R", + "title": "AI Planning and Decision Making", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4247", + "title": "Graphics Rendering Techniques", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3241", + "corequisite": "" + }, + { + "moduleCode": "CS4248", + "title": "Natural Language Processing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS3243 or CS3245) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4248R", + "title": "Natural Language Processing", + "moduleCredit": 1, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-read with host module in current semester or pass host module in previous semester. Student selection process is enforced.", + "corequisite": "" + }, + { + "moduleCode": "CS4249", + "title": "Phenomena and Theories of Human-Computer Interaction", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3240 or NM2213 or NM2216", + "corequisite": "" + }, + { + "moduleCode": "CS4257", + "title": "Algorithmic Foundations of Privacy", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2107 and CS3230 and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS4261", + "title": "Algorithmic Mechanism Design", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS5461", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or CS2040 or its equivalent) and ((MA1100 or (CS1231 or its equivalent)) and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4268", + "title": "Quantum Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4269", + "title": "Fundamentals of Logic in Computer Science", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS5469", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or CS2040/C/S) and (CS1231/S or MA1100).", + "corequisite": "" + }, + { + "moduleCode": "CS4276", + "title": "IoT Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS5476", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG3002 or CG4002 or CS3237", + "corequisite": "" + }, + { + "moduleCode": "CS4277", + "title": "3D Computer Vision", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS5477", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1101R or MA1311 or MA1506 or MA1508E) and (CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS4278", + "title": "Intelligent Robots: Algorithms and Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS5478", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243 and (MA1101R or MA1311 or MA1508E) and (MA1102R or MA1505 or (MA1511 and MA1512) or MA1521) and (EE2012/A or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS4330", + "title": "Combinatorial Methods in Bioinformatics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3225 Combinatorial Methods in Bioinformatics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or its equivalent) and (CS2220 or LSM2104)", + "corequisite": "" + }, + { + "moduleCode": "CS4344", + "title": "Networked and Mobile Gaming", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2106 or CG2271) and (CS3103 or CG3204L)", + "corequisite": "" + }, + { + "moduleCode": "CS4345", + "title": "General-Purpose Computation on GPU", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3241", + "corequisite": "" + }, + { + "moduleCode": "CS4347", + "title": "Sound and Music Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2108 and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521)", + "corequisite": "" + }, + { + "moduleCode": "CS4350", + "title": "Game Development Project", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3247 or NM3216", + "corequisite": "" + }, + { + "moduleCode": "CS4351", + "title": "Real-Time Graphics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3241 Computer Graphics", + "corequisite": "" + }, + { + "moduleCode": "CS4880", + "title": "Digital Entrepreneurship", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "TR3002 New Venture Creation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students in their 3rd year of study in science, technology or\nbusiness", + "corequisite": "" + }, + { + "moduleCode": "CS5201", + "title": "Foundation in Theoretical CS", + "moduleCredit": 0, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS5202", + "title": "Foundation in Computer Systems", + "moduleCredit": 0, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS5205", + "title": "Foundation in Programming Languages", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3212", + "corequisite": "" + }, + { + "moduleCode": "CS5206", + "title": "Foundation in Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2010 or its equivalent and CS3230", + "corequisite": "" + }, + { + "moduleCode": "CS5207", + "title": "Foundation in Operating Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS5208", + "title": "Foundation in Database Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS5209", + "title": "Foundation in Logic and AI", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3234", + "corequisite": "" + }, + { + "moduleCode": "CS5214", + "title": "Design of Optimising Compilers", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3212 or CS4212", + "corequisite": "" + }, + { + "moduleCode": "CS5215", + "title": "Constraint Processing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2104", + "corequisite": "" + }, + { + "moduleCode": "CS5216", + "title": "Logic Programming and Constraints", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS5218", + "title": "Principles and Practice of Program Analysis", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4212 Compiler Design or CS4215 Programming Language Implementation", + "corequisite": "" + }, + { + "moduleCode": "CS5219", + "title": "Automated Software Validation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2104 Programming Language Concepts", + "corequisite": "" + }, + { + "moduleCode": "CS5222", + "title": "Advanced Computer Architecture", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3220 Computer Architecture or CS4223 Multi-core Architecture", + "corequisite": "" + }, + { + "moduleCode": "CS5223", + "title": "Distributed Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3211 Parallel and Concurrent Programming", + "corequisite": "" + }, + { + "moduleCode": "CS5224", + "title": "Cloud Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS5226", + "title": "Database Tuning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS5228", + "title": "Knowledge Discovery and Data Mining", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS2102 and CS3243 and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS5229", + "title": "Advanced Computer Networks", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4226 Internet Architecture or EE4210 Computer Communications Networks II", + "corequisite": "" + }, + { + "moduleCode": "CS5230", + "title": "Computational Complexity", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS4230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4232 Theory of Computation", + "corequisite": "" + }, + { + "moduleCode": "CS5231", + "title": "Systems Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235 Computer Security", + "corequisite": "" + }, + { + "moduleCode": "CS5232", + "title": "Formal Specification and Design Techniques", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1100 or (CS1231 or its equivalent)) and CS2103", + "corequisite": "" + }, + { + "moduleCode": "CS5233", + "title": "Simulation and Modelling Techniques", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4231 and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS5234", + "title": "Algorithms at Scale", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230", + "corequisite": "" + }, + { + "moduleCode": "CS5236", + "title": "Advanced Automata Theory", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4232 Theory of Computation", + "corequisite": "" + }, + { + "moduleCode": "CS5237", + "title": "Computational Geometry and Applications", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 Design and Analysis of Algorithms", + "corequisite": "" + }, + { + "moduleCode": "CS5238", + "title": "Advanced Combinatorial Methods in Bioinformatics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230", + "corequisite": "" + }, + { + "moduleCode": "CS5239", + "title": "Computer System Performance Analysis", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS1020 or its equivalent) or CS2020 or (CS2030 or its equivalent) or CS2113/T) and (EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS5240", + "title": "Theoretical Foundations in MultiMedia", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "((CS1020 or its equivalent) or CS2020 or (CS2040 or its equivalent)) and (MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521) and \n(EE2012/A or MA2216 or ST1131/A or ST1232 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS5241", + "title": "Speech Processing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) and CS1231 and (MA1102R or MA1505 or MA1521) and (MA1101R or MA1506)", + "corequisite": "" + }, + { + "moduleCode": "CS5242", + "title": "Neural Networks and Deep Learning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3244 Machine Learning", + "corequisite": "" + }, + { + "moduleCode": "CS5246", + "title": "Text Mining", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS5248", + "title": "Systems Support for Continuous Media", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2106 Introduction to Operating Systems and CS4226 Internet Architecture", + "corequisite": "" + }, + { + "moduleCode": "CS5249", + "title": "Audio in Multimedia Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1020 or its equivalent) and CS1231 and (MA1102R or MA1505 or MA1505C or MA1521) and (MA1101R or MA1506)", + "corequisite": "" + }, + { + "moduleCode": "CS5250", + "title": "Advanced Operating Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2106 Introduction to Operating Systems or CG2271\nReal-Time Operating Systems", + "corequisite": "" + }, + { + "moduleCode": "CS5260", + "title": "Neural Networks and Deep Learning II", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS5242 Neural Networks and Deep Learning", + "corequisite": "" + }, + { + "moduleCode": "CS5271", + "title": "Performance Analysis of Embedded Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2271 or CG2271 or CS3220 or CS4223) and CS4212", + "corequisite": "" + }, + { + "moduleCode": "CS5272", + "title": "Embedded Software Design", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "(CG2271 or CS2106) and (CS2103 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS5321", + "title": "Network Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3235 Computer Security", + "corequisite": "" + }, + { + "moduleCode": "CS5322", + "title": "Database Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3223 Database Systems Implementation", + "corequisite": "" + }, + { + "moduleCode": "CS5330", + "title": "Randomized Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230", + "corequisite": "" + }, + { + "moduleCode": "CS5331", + "title": "Web Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3235 Computer Security", + "corequisite": "" + }, + { + "moduleCode": "CS5332", + "title": "Biometric Authentication", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "(CS2040 or its equivalent) and (MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521) and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS5338", + "title": "Principles of Planning and Decision Making", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4246", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2216 Probability or ST2131 Probability or ST2334 Probability\nand Statistics) and CS3243 Foundations of Artificial Intelligence", + "corequisite": "" + }, + { + "moduleCode": "CS5339", + "title": "Theory and Algorithms for Machine Learning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3244", + "corequisite": "" + }, + { + "moduleCode": "CS5340", + "title": "Uncertainty Modelling in AI", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243 and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS5342", + "title": "Multimedia Computing and Applications", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4341 or CS3246", + "corequisite": "" + }, + { + "moduleCode": "CS5343", + "title": "Advanced Computer Animation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or ((CS2030 or its equivalent) or CS2113/T) and (CS2040 or its equivalent)) and (MA1101R or MA1506) and (MA1102R or MA1505 or MA1505C or MA1521) and CS3241", + "corequisite": "" + }, + { + "moduleCode": "CS5344", + "title": "Big-Data Analytics Technology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BT5110 (Data Management and Warehousing) or database related modules; programming experience (with data structures and algorithms) is required", + "corequisite": "" + }, + { + "moduleCode": "CS5345", + "title": "Social and Digital Media Analytics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS5346", + "title": "Information Visualisation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2040 or its equivalent) and CS2102 and CS3240 and \n(EE2012/A or ST1131/A or ST1232 or DSC2008 or ST2132 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS5351", + "title": "The Business of Software", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Undergraduate students in their 4th year can apply. Open to PhD students.", + "corequisite": "" + }, + { + "moduleCode": "CS5421", + "title": "Database Applications Design and Tuning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS5422", + "title": "Wireless Networking", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS4222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "(CS2105 or EE3204/E or EE4204) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS5424", + "title": "Distributed Databases", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS4224", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS5425", + "title": "Big Data Systems for Data Science", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "BT4221 and CS4225", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS2102", + "corequisite": "" + }, + { + "moduleCode": "CS5439", + "title": "Software Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS4239", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CS3235 and (CS2103 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS5446", + "title": "AI Planning and Decision Making", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS4246", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243 and \n(EE2012/A or ST2132 or ST2334 or ((MA2216 or ST2131) and (ST1131/A or ST1232 or DSC2008)))", + "corequisite": "" + }, + { + "moduleCode": "CS5461", + "title": "Algorithmic Mechanism Design", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4261", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or CS2040 or its equivalent) and ((MA1100 or (CS1231 or its equivalent)) and \n(MA1101R or MA1311 or MA1508E or MA1513) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS5469", + "title": "Fundamentals of Logic in Computer Science", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4269", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2010 or CS2020 or CS2040/C/S) and (CS1231/S or MA1100).", + "corequisite": "" + }, + { + "moduleCode": "CS5476", + "title": "IoT Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS4276", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CG3002 or CG4002 or CS3237", + "corequisite": "" + }, + { + "moduleCode": "CS5477", + "title": "3D Computer Vision", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS4277", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1101R or MA1311 or MA1506 or MA1508E) and\n(CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "CS5478", + "title": "Intelligent Robots: Algorithms and Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4278", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243 and (MA1101R or MA1311 or MA1508E) and (MA1102R or MA1505 or (MA1511 and MA1512) or MA1521) and (EE2012/A or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS6101", + "title": "Exploration of Computer Science Research", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6202", + "title": "Advanced Topics in Programming Languages", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "3211 or CS3212 or CS4212", + "corequisite": "" + }, + { + "moduleCode": "CS6203", + "title": "Advanced Topics in Database Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3223", + "corequisite": "" + }, + { + "moduleCode": "CS6204", + "title": "Advanced Topics in Networking", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS5229 or Permission from lecturer.", + "corequisite": "" + }, + { + "moduleCode": "CS6205", + "title": "Advanced Modelling & Simulation", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3232 or CS4237", + "corequisite": "" + }, + { + "moduleCode": "CS6206", + "title": "Advanced Topics in Human-Computer Interaction", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3240", + "corequisite": "" + }, + { + "moduleCode": "CS6207", + "title": "Advanced Natural Language Processing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4248", + "corequisite": "" + }, + { + "moduleCode": "CS6208", + "title": "Advanced Topics in Artificial Intelligence", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3243", + "corequisite": "" + }, + { + "moduleCode": "CS6209", + "title": "Topics in Cryptography", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6210", + "title": "The Art of Computer Science Research", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 Design and Analysis of Algorithms", + "corequisite": "" + }, + { + "moduleCode": "CS6211", + "title": "Analytical Performance Modelling for Computer Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ST2334 or ST2131) and CS2105 and CS2106.", + "corequisite": "" + }, + { + "moduleCode": "CS6212", + "title": "Topics in Media", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Variable, depending on the choice of topics or departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "CS6213", + "title": "Special Topics in Distributed Computing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3211 or CS4231", + "corequisite": "" + }, + { + "moduleCode": "CS6215", + "title": "Advanced Topics in Program Analysis", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 and CS4212", + "corequisite": "" + }, + { + "moduleCode": "CS6216", + "title": "Advanced Topics in Machine Learning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244", + "corequisite": "" + }, + { + "moduleCode": "CS6217", + "title": "Topics in Prog. Languages & Software Engineering", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6218", + "title": "Principles of Prog. Languages & Software Engineering", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6219", + "title": "Advanced Topics in Computer Systems", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2105 and CS2106", + "corequisite": "" + }, + { + "moduleCode": "CS6220", + "title": "Advanced Topics in Data Mining", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS5228", + "corequisite": "" + }, + { + "moduleCode": "CS6222", + "title": "Advanced Topics in Computational Biology", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2220", + "corequisite": "" + }, + { + "moduleCode": "CS6230", + "title": "Topics in Information Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4236 and CS5321", + "corequisite": "" + }, + { + "moduleCode": "CS6231", + "title": "Advanced Topics in Security and Privacy", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4236 Cryptography Theory and Practice or \nCS3235 Computer Security or \nCS5231 System Security.", + "corequisite": "" + }, + { + "moduleCode": "CS6234", + "title": "Advanced Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS5234", + "corequisite": "" + }, + { + "moduleCode": "CS6235", + "title": "Advanced Topics in Theoretical Computer Science", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230", + "corequisite": "" + }, + { + "moduleCode": "CS6240", + "title": "Multimedia Analysis", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS4243 or CS5240", + "corequisite": "" + }, + { + "moduleCode": "CS6241", + "title": "Advanced Topics in Computer Graphics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6242", + "title": "Digital Libraries", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3245 and CS3246 or their equivalent", + "corequisite": "" + }, + { + "moduleCode": "CS6244", + "title": "Advanced Topics in Robotics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 and \n(MA1101R or MA1311 or MA1506 or MA1508E) and\n(ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "CS6270", + "title": "Virtual Machines", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3220 Computer Architecture or CS4223 Multi-core Architectures", + "corequisite": "" + }, + { + "moduleCode": "CS6280", + "title": "Topics in Computer Science: Systems Design for Next Gen Hardware", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2100 Computer Organization and CS2106 Introduction to Operating Systems", + "corequisite": "" + }, + { + "moduleCode": "CS6281", + "title": "Topics in Computer Science: Property Testing", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3230 Design and Analysis of Algorithms and (ST2334 Probability and Statistics or ST2131 Probability)", + "corequisite": "" + }, + { + "moduleCode": "CS6282", + "title": "Topics in Computer Science: Internet-of-Things Security", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "Variable, depend on the choice of topics or departmental approval.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235 Computer Security and CS3103 Computer Networks Practice and CS4222 Wireless Networking", + "corequisite": "" + }, + { + "moduleCode": "CS6283", + "title": "Topics in Computer Science: Trustworthy Machine Learning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "Variable, depend on the choice of topics or departmental approval.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning", + "corequisite": "" + }, + { + "moduleCode": "CS6284", + "title": "Topics in Computer Science: Big Data Meets New Hardware", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "Variable, depend on the choice of topics or departmental approval.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2100 Computer Organization and CS2102 Database Systems", + "corequisite": "" + }, + { + "moduleCode": "CS6285", + "title": "Topics in Computer Science: Bridging System and Deep Learning", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "Variable, depend on the choice of topics or departmental approval.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS5242 and CS3210", + "corequisite": "" + }, + { + "moduleCode": "CS6290", + "title": "Lecture Series in Computer Science I", + "moduleCredit": 2, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6291", + "title": "Lecture Series in Computer Science II", + "moduleCredit": 2, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6292", + "title": "Lecture Series in Computer Science III", + "moduleCredit": 2, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CS6880", + "title": "Advanced Topics in Software Engineering", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2103 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "CSA6101", + "title": "Cultural Studies Theory and Analysis", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSA6102", + "title": "Cultural Studies in Asia", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSA6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSA6880", + "title": "Topics in Cultural Studies in Asia", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX2991", + "title": "Exchange Breadth Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX2992", + "title": "Exchange Breadth Module", + "moduleCredit": 1, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX2994", + "title": "Exchange Breadth Module", + "moduleCredit": 3, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX2995", + "title": "Exchange Breadth Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX3991", + "title": "Exchange Breadth Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX3992", + "title": "Exchange Breadth Module", + "moduleCredit": 1, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX4991", + "title": "Exchange Breadth Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX4992", + "title": "Exchange Breadth Module", + "moduleCredit": 1, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX4993", + "title": "Exchange Breadth Module", + "moduleCredit": 2, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CSX4994", + "title": "Exchange Breadth Module", + "moduleCredit": 3, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CZ5101", + "title": "Numerical Recipes", + "moduleCredit": 5, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CZ5102", + "title": "Computational Tools", + "moduleCredit": 5, + "department": "Center for Computational Science and Engineering", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CZ5103", + "title": "Modeling and Simulation", + "moduleCredit": 5, + "department": "Center for Computational Science and Engineering", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CZ5198", + "title": "Graduate Seminar Module in Computational Science", + "moduleCredit": 4, + "department": "Center for Computational Science and Engineering", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CZ5211", + "title": "Topics in Computational Science 1", + "moduleCredit": 4, + "department": "Center for Computational Science and Engineering", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "CZ5274", + "title": "Computational Fluid Dynamics", + "moduleCredit": 4, + "department": "Center for Computational Science and Engineering", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DA1000", + "title": "Dental Anatomy & Histology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DAO1704", + "title": "Decision Analytics using Spreadsheets", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC1007; DSC1007X", + "attributes": [ + true, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DAO1704X", + "title": "Decision Analytics using Spreadsheets", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC1007; DSC1007X", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DAO1704Y", + "title": "Decision Analytics using Spreadsheets", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC1007; DSC1007X", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DAO2702", + "title": "Programming for Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC1007", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO1704/DAO1704X", + "corequisite": "" + }, + { + "moduleCode": "DAO2703", + "title": "Operations and Technology Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA3701", + "title": "Introduction to Optimization", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC3214; IE2110.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702", + "corequisite": "" + }, + { + "moduleCode": "DBA3702", + "title": "Descriptive Analytics with R", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO1704 Decision Analytics using Spreadsheets (2017 curriculum), or\nDSC1007 Business Analytics - Models and Decisions (pre-2017 curriculum)", + "corequisite": "" + }, + { + "moduleCode": "DBA3711", + "title": "Stochastic Models in Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702", + "corequisite": "" + }, + { + "moduleCode": "DBA3712", + "title": "Dynamic Pricing & Revenue Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC3224", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702", + "corequisite": "" + }, + { + "moduleCode": "DBA3751", + "title": "Independent Study in Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Depends on the subject matter.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the subject matter.", + "corequisite": "Depends on the subject matter." + }, + { + "moduleCode": "DBA3752", + "title": "Independent Study in Business Analytics", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Depends on the subject matter.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the subject matter.", + "corequisite": "Depends on the subject matter." + }, + { + "moduleCode": "DBA3761", + "title": "Topics in Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO1704 Decision Analytics using Spreadsheets\nDAO2702 Programming for Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "DBA3803", + "title": "Predictive Analytics in Business", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC3216", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702", + "corequisite": "" + }, + { + "moduleCode": "DBA4711", + "title": "Advanced Analytics with R", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC4217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702, DBA3702 and DBA3803.", + "corequisite": "" + }, + { + "moduleCode": "DBA4712", + "title": "Statistical Learning for Managerial Decision", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702 and DBA3803.", + "corequisite": "" + }, + { + "moduleCode": "DBA4751", + "title": "Advanced Independent Study in Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Depends on the subject matter.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the subject matter.", + "corequisite": "Depends on the subject matter." + }, + { + "moduleCode": "DBA4752", + "title": "Advanced Independent Study in Business Analytics", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Depends on the subject matter.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the subject matter.", + "corequisite": "Depends on the subject matter." + }, + { + "moduleCode": "DBA4761", + "title": "Seminars in Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702, DBA3702 and DBA3803.", + "corequisite": "" + }, + { + "moduleCode": "DBA4811", + "title": "Analytical Tools for Consulting", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC4213", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702", + "corequisite": "" + }, + { + "moduleCode": "DBA5101", + "title": "Analytics in Managerial Economics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "DSC5101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5102", + "title": "Business Analytics Capstone Project", + "moduleCredit": 12, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "DSC5102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5103", + "title": "Operations Research and Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BDC5101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5104", + "title": "Introduction to Network Science & Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5105", + "title": "Fintech, Enabling Technologies and Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5105", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5106", + "title": "Foundation in Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BT4222 Mining Web Data for Business Insights,\nST5202 Applied Regression Analysis,\nST5318 Statistical Methods for Health Science\nDCS5106 Foundation in Data Analytics I\nBT5154 Foundation of Business Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5107", + "title": "Data Analytics in Banking", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5107", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Good to have a basic understanding of data mining, machine learning and OR, but not compulsory as this module gives an introduction in those areas", + "corequisite": "" + }, + { + "moduleCode": "DBA5108", + "title": "Advanced Analytics and Machine Learning", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BT4222 Mining Web Data for Business Insights,\nST5202 Applied Regression Analysis,\nST5318 Statistical Methods for Health Science,\nBT5152 Decision Making Technology for Business,\nIS5152 Data-Driven Decision Making", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC5106 Foundation in Data Analytics I\nDSC5106 Foundations of Business Analytics\nDSC5103 Statistics", + "corequisite": "" + }, + { + "moduleCode": "DBA5109", + "title": "Quantitative Risk Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DBA5121", + "title": "Hands-on with Business Analytics (Finance)", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5121", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE4201", + "title": "Seminars in Sustainable Cities", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5106", + "title": "Environmental Management And Assessment", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5107", + "title": "Environmental Planning", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5108", + "title": "Study Report", + "moduleCredit": 6, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5109", + "title": "Dissertation", + "moduleCredit": 10, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5110", + "title": "Gis For Environmental Studies", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5111", + "title": "Managing the Tropical Marine Environment", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DE5269", + "title": "Environmental Economics and Sustainable Development", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PP5269 – DE 5269 is replacing PP5269 for the MEM Program", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DEP5101", + "title": "Urban Analysis Workshop", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DEP5101A", + "title": "Qualitative Methods for Urban Planning", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Must be taken together with DEP5101 Urban Analysis Workshop", + "corequisite": "" + }, + { + "moduleCode": "DEP5102", + "title": "Urban Planning History & Theory", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DEP5103", + "title": "Urban and Regional Planning", + "moduleCredit": 8, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "UP5101 Urban Analysis Workshop OR UD5622 Methods of Urban Design & Urban Analysis", + "corequisite": "" + }, + { + "moduleCode": "DEP5103A", + "title": "Quantitative Methods for Urban Planning", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Must be taken together with DEP5103 Urban Planning Studio", + "corequisite": "" + }, + { + "moduleCode": "DEP5104", + "title": "Urban and Regional Economics", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DEP5105", + "title": "Urban Infrastructure and Mobility Systems", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DEP5106", + "title": "Integrated Urban Planning Studio", + "moduleCredit": 8, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "UP5101 Urban Analysis Workshop OR UD5622 Methods of Urban Design & Urban Analysis", + "corequisite": "" + }, + { + "moduleCode": "DEP5107", + "title": "Dissertation", + "moduleCredit": 8, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any 5000 Research Methods module", + "corequisite": "" + }, + { + "moduleCode": "DEP5108", + "title": "MUP Internship Module", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The students have to clarify with the employer that the\nworking time is not in conflict with the compulsory\nmodules of the MUP programme in the related semester.\nThis condition must be supervised by the programme\ndirector or tutor.", + "corequisite": "" + }, + { + "moduleCode": "DEP5109", + "title": "Integrated Planning Project", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-requisites for the new module is the compulsory\nprogramme of MUP in the first 3 semesters:\n- DEP5101 Urban Analysis Workshop\n- DEP5103 Urban Planning Studio\n- UD5601 Urban Design Studio\n- DEP5101A Qualitative Methods\n- DEP5103A Quantitative Methods\n- DEP5102 History and Theory\n- DEP5104 Urban and Regional Economics\n- DEP5105 Urban Infrastructure & Mobility Systems\n- UD5521 Planning Process", + "corequisite": "" + }, + { + "moduleCode": "DEP5110", + "title": "Urban Design and Planning", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DEP5101 Urban Analysis Workshop and DEP5103 Urban\nPlanning Studio", + "corequisite": "" + }, + { + "moduleCode": "DEP5111", + "title": "Planning Technologies", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DEP5112", + "title": "Planning Policy and Process", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DI5100", + "title": "Dental Implantology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DI5200", + "title": "Graduate Diploma in Geriatric Dentistry", + "moduleCredit": 0, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DL5101", + "title": "Digital Organisation Models", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DL5102", + "title": "Digital Agility and Change Leadership", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DL5103 Innovation By Design", + "corequisite": "" + }, + { + "moduleCode": "DL5103", + "title": "Innovation By Design", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "N.A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "N.A" + }, + { + "moduleCode": "DL5201", + "title": "Strategic Thinking & Digital Foresight", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DL5101 Digital Organisation Model", + "corequisite": "" + }, + { + "moduleCode": "DL5202", + "title": "Digital Business Strategy", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DL5201 Strategic Thinking and Digital Foresight", + "corequisite": "" + }, + { + "moduleCode": "DL5203", + "title": "Mastering Digital Architecture", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DL5101 Digital Organisation Model", + "corequisite": "" + }, + { + "moduleCode": "DL5302", + "title": "Managing Digitalisation Complexity", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DL5102 Digital Agility and Change Leadership", + "corequisite": "" + }, + { + "moduleCode": "DMA1201CH", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201CL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201CLS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201EC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201EL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201EN", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201EU", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201GE", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201GL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201HY", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201JS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201MS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201NM", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201PE", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201PH", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201PL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201PS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201SC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201SE", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201SN", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201SW", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1201TS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202CH", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202CL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202CLS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202EC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202EL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202EN", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202EU", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202GE", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202GL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202HY", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202JS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202MS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202NM", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202PE", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202PH", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202PL", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202PS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202SC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202SE", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202SN", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202SW", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1202TS", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301CH", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301CL", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301CLS", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301EC", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301EL", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301EN", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301EU", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301GE", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301GL", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301HY", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301JS", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301MS", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301NM", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301PE", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301PH", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301PL", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301PS", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301SC", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301SE", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301SN", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301SW", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1301TS", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401CH", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401CL", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401CLS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401EC", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401EL", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401EN", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401EU", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401GE", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401GL", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401HY", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401JS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401L01", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401LAF", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401MS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401NM", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401PE", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401PH", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401PL", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401PS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401SC", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401SE", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401SN", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401SW", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMA1401TS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201ACC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201BSP", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201DAO", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201DO", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201FIN", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201MKT", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1201MNO", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202ACC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202BSP", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202DAO", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202DO", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202FIN", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202MKT", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1202MNO", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203ACC", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203BSP", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203DAO", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203DO", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203FIN", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203MKT", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1203MNO", + "title": "Design Your Own Module", + "moduleCredit": 3, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204ACC", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204BSP", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204DAO", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204DO", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204FIN", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204MKT", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMB1204MNO", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMC1401", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMC1401CS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMC1401IS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMP1201", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMP1202", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMR1201GC", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMR1201GEQA", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMR1201WRA", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMR1201WRB", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401CM", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401FST", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401LS", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401MA", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401PC", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Physics", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401SP", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401ST", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMS1401ZB", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1101", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1102", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1103", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1104", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1105", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1106", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1107", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1108", + "title": "DYOM via edX MOOC", + "moduleCredit": 1, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1201", + "title": "DYOM via edX MOOC", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1202", + "title": "DYOM via edX MOOC", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1203", + "title": "DYOM via edX MOOC", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1204", + "title": "DYOM via edX MOOC", + "moduleCredit": 2, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1301", + "title": "DYOM via edX MOOC", + "moduleCredit": 3, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1302", + "title": "DYOM via edX MOOC", + "moduleCredit": 3, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1401", + "title": "DYOM via edX MOOC", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1402", + "title": "DYOM via edX MOOC", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1501", + "title": "DYOM via edX MOOC", + "moduleCredit": 5, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1501AI", + "title": "DYOM via edX MOOC", + "moduleCredit": 5, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1501CT", + "title": "DYOM via edX MOOC", + "moduleCredit": 5, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1601", + "title": "DYOM via edX MOOC", + "moduleCredit": 6, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1701", + "title": "DYOM via edX MOOC", + "moduleCredit": 7, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMX1801", + "title": "DYOM via edX MOOC", + "moduleCredit": 8, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1201RF", + "title": "Design Your Own Module", + "moduleCredit": 2, + "department": "Raffles Hall", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401ELC", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401FA", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "NUS Centre for the Arts", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401HL", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401KE", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401PGP", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Prince George’s Park House", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401PSP", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401RF", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Raffles Hall", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401SOG", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401TH", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DMY1401TT", + "title": "Design Your Own Module", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS3701", + "title": "Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC3201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703", + "corequisite": "" + }, + { + "moduleCode": "DOS3702", + "title": "Purchasing and Materials Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC3202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703", + "corequisite": "" + }, + { + "moduleCode": "DOS3703", + "title": "Service Operations Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC3203", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703", + "corequisite": "" + }, + { + "moduleCode": "DOS3704", + "title": "Operations Strategy", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "DSC4211C SIOSCM: Operations Strategy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 Operations and Technology Management", + "corequisite": "" + }, + { + "moduleCode": "DOS3712", + "title": "Physical Distribution Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC3218", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703", + "corequisite": "" + }, + { + "moduleCode": "DOS3713", + "title": "Project Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC3225", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS3714", + "title": "Sustainable Operations Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "DSC3226", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703", + "corequisite": "" + }, + { + "moduleCode": "DOS3751", + "title": "Independent Study in Ops & Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and additional module(s) as required.", + "corequisite": "" + }, + { + "moduleCode": "DOS3752", + "title": "Independent Study in Ops & Supply Chain Management (2 MC)", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and additional module(s) as required.", + "corequisite": "" + }, + { + "moduleCode": "DOS3761", + "title": "Topics in Operations & Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and additional module(s) as required.", + "corequisite": "" + }, + { + "moduleCode": "DOS3761X", + "title": "Topics in Operations & Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and additional module(s) as required.", + "corequisite": "" + }, + { + "moduleCode": "DOS3761Y", + "title": "Topics in Operations & Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and additional module(s) as required.", + "corequisite": "" + }, + { + "moduleCode": "DOS3761Z", + "title": "Topics in Operations & Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and additional module(s) as required.", + "corequisite": "" + }, + { + "moduleCode": "DOS3811", + "title": "Technology and Business Innovation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "DOS3711, DSC3227, DSC3213", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS4711", + "title": "Supply Chain Applied Project", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702, DAO2703 and DOS3701.", + "corequisite": "" + }, + { + "moduleCode": "DOS4712", + "title": "Co-ordination and Flexibility in SCM", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "DSC4214 Co-ordination and Flexibility in SCM", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) DSC2006 Operations Management or DAO2703 Operations and Technology Management\n(2) DSC3201/DOS3701 Supply Chain Management\n(3) DAO1704/DAO1704X Decision Analytics using Spreadsheets (or has knowledge of calculus and probability)", + "corequisite": "" + }, + { + "moduleCode": "DOS4714", + "title": "Service Design", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC4211G Seminars in Ops & SCM: Service Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) DAO2703 Technology and Operations Management\n(2) MKT1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "DOS4751", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and DOS3701.", + "corequisite": "" + }, + { + "moduleCode": "DOS4752", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt (2 MC)", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and DOS3701.", + "corequisite": "" + }, + { + "moduleCode": "DOS4761", + "title": "Seminars in Operations and Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2703 and DOS3701.", + "corequisite": "" + }, + { + "moduleCode": "DOS4811", + "title": "Data Visualisation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "DSC4215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702 and DOS3702.", + "corequisite": "" + }, + { + "moduleCode": "DOS4812", + "title": "Business-Driven Technology", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC4216", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All BBA core modules, except ES2002, MNO2705 and BSP3701.", + "corequisite": "" + }, + { + "moduleCode": "DOS5101", + "title": "Supply Chain Coordination and Risk Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "DSC5211A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Knowledge in Operations Management and Supply Chain Management\nKnowledge of Calculus and Probability", + "corequisite": "" + }, + { + "moduleCode": "DOS5101A", + "title": "Managing the Financial Supply Chain", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211A Supply Chain Co-ordination & Risk Management \nDOS5101 Supply Chain Co-ordination & Risk Management\nDSC5221A Managing the Financial Supply Chain", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS5101B", + "title": "Supply Chain Risk Management", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211A Supply Chain Co-ordination & Risk Management \nDOS5101 Supply Chain Co-ordination & Risk Management\nDSC5221B Supply Chain Risk Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS5102", + "title": "Analytical Tools for Consulting", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS5102A", + "title": "Analytics for Consulting - Part 1", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211B Analytical Tools for Consulting \nDOS5102 Analytical Tools for Consulting\nDSC5222A Analytics for Consulting – Part 1", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS5102B", + "title": "Analytics for Consulting - Part 2", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211B Analytical Tools for Consulting \nDOS5102 Analytical Tools for Consulting\nDSC5222B Analytics for Consulting – Part 2", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC5222A Analytics for Consulting – Part 1, or\nDOS5102A Analytics for Consulting – Part 1", + "corequisite": "" + }, + { + "moduleCode": "DOS5103", + "title": "Global Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMS5202, DSC5211D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DOS5104", + "title": "Sustainable Supply Chains", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC5211E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSA1101", + "title": "Introduction to Data Science", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "YSC2239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 pass in Mathematics or H2 Further Mathematics or equivalent\nThis module is offered only to DSA students", + "corequisite": "" + }, + { + "moduleCode": "DSA1361", + "title": "Introductory Data Science with Python and Tableau", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSA2101", + "title": "Essential Data Analytics Tools: Data Visualisation", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSA1101 and MA1101R and ST2131/MA2216", + "corequisite": "" + }, + { + "moduleCode": "DSA2102", + "title": "Essential Data Analytics Tools: Numerical Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA2213", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1101R and MA1102R", + "corequisite": "" + }, + { + "moduleCode": "DSA2361", + "title": "Data Analytics for Customer Insights", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "All DSA major students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSA1361 or department approval", + "corequisite": "Students must either fulfil DSA1361 as pre-requisite or must read this module together with DSA1361" + }, + { + "moduleCode": "DSA2362", + "title": "Decision Trees for Machine Learning and Data Analysis", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSA1361 or department approval", + "corequisite": "" + }, + { + "moduleCode": "DSA3101", + "title": "Data Science in Practice", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSA2101 and ST2132", + "corequisite": "" + }, + { + "moduleCode": "DSA3102", + "title": "Essential Data Analytics Tools: Convex Optimisation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010/CS1010E/CS1010S/CS1010X and MA1101R and {MA1104 or MA2104 or MA2311}", + "corequisite": "" + }, + { + "moduleCode": "DSA3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Data Science and Analytics as first major and have completed a minimum of 32 MCs in Data Science and Analytics major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "DSA3311", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "Any other XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Data Science and Analytics as first major and have completed a minimum of 32 MCs in Data Science and Analytics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "DSA3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Data Science and Analytics as first major and have completed a minimum of 32 MCs in Data Science and Analytics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "DSA3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared DSA as first major (co-op pathway) and have completed a minimum of 32 MCs in DSA major at the time of application and have completed DSA3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "DSA4199", + "title": "Honours Project in Data Science and Analytics", + "moduleCredit": 16, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "DSA4299", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSA4211", + "title": "High-Dimensional Statistical Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "DSA4212", + "title": "Optimisation for Large-Scale Data-Driven Inference", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1101R and {MA1104 or MA2311} and ST2132", + "corequisite": "" + }, + { + "moduleCode": "DSA4261", + "title": "Sense-making Case Analysis: Logistics and Transport", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4261A and DSA4261B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4261A", + "title": "Sense-making Case Analysis: Logistics", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4261 Sense-making Case Analysis: Logistics and Transport", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4261B", + "title": "Sense-making Case Analysis: Transport", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4261 Sense-making Case Analysis: Logistics and Transport", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4262", + "title": "Sense-making Case Analysis: Health and Medicine", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4262A and DSA4262B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4262A", + "title": "Sense-making Case Analysis: Health", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4262 Sense-making Case Analysis: Health and Medicine", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4262B", + "title": "Sense-making Case Analysis: Medicine", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4262 Sense-making Case Analysis: Health and Medicine", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4263", + "title": "Sense-making Case Analysis: Business and Commerce", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4263A and DSA4263B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4263A", + "title": "Sense-making Case Analysis: Business", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4263 Sense-making Case Analysis: Business and Commerce", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4263B", + "title": "Sense-making Case Analysis: Commerce", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4263 Sense-making Case Analysis: Business and Commerce", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4264", + "title": "Sense-making Case Analysis: Public Policy and Society", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "DSA4264A and DSA4264B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4264A", + "title": "Sense-making Case Analysis: Public Policy", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4264 Sense-making Case Analysis: Public Policy and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4264B", + "title": "Sense-making Case Analysis: Society", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4264 Sense-making Case Analysis: Public Policy and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4265", + "title": "Sense-making Case Analysis: Economics and Finance", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4265A and DSA4265B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4265A", + "title": "Sense-making Case Analysis: Economics", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4265 Sense-making Case Analysis: Economics and Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4265B", + "title": "Sense-making Case Analysis: Finance", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4265 Sense-making Case Analysis: Economics and Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4266", + "title": "Sense-making Case Analysis: Science and Technology", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "DSA4266A and DSA4266B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4266A", + "title": "Sense-making Case Analysis: Science", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4266 Sense-making Case Analysis: Science and Technology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4266B", + "title": "Sense-making Case Analysis: Technology", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "DSA4266 Sense-making Case Analysis: Science and Technology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3244 Machine Learning and DSA3101 Data Science in Practice, or by permission", + "corequisite": "" + }, + { + "moduleCode": "DSA4299", + "title": "Applied Project in Data Science and Analytics", + "moduleCredit": 16, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Pharmacy majors are precluded from reading this module. This module would preclude XX4199 and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for specific major.", + "corequisite": "" + }, + { + "moduleCode": "DSA4299C", + "title": "Applied Project in Data Science and Analytics", + "moduleCredit": 16, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "Pharmacy majors are precluded from reading this module. This module would preclude XX4199 and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for specific major.", + "corequisite": "" + }, + { + "moduleCode": "DSA5101", + "title": "Introduction to Big Data for Industry", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "DSA5102", + "title": "Foundations of Machine Learning", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CS5339", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Linear Algebra, Calculus, Probability, Programming Skills", + "corequisite": "" + }, + { + "moduleCode": "DSA5102X", + "title": "Foundations of Machine Learning", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "DSA5102, CS5339", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSA5201", + "title": "DSML Industry Consulting and Applications Project", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSA5101 Introduction to Big Data for Industry", + "corequisite": "" + }, + { + "moduleCode": "DSA5202", + "title": "Advanced Topics in Machine Learning", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSA5102 Foundations of Machine Learning, or departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "DSA5203", + "title": "Visual Data Processing and Interpretation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4230 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "DSA5204", + "title": "Deep Learning and Applications", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CS5242", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "DSA5205", + "title": "Data Science in Quantitative Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "DSA5231", + "title": "Data Analytics for the Digital Workplace", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSA5731", + "title": "Data Science for A-level Mathematics Teachers", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a Bachelor’s degree in a quantitative subject, including but not limited to mathematics, applied mathematics, statistics and engineering.", + "corequisite": "" + }, + { + "moduleCode": "DSA5811", + "title": "Data Analytics: Principles and Practice", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a Bachelor’s degree with modules/courses in calculus, linear algebra and probability", + "corequisite": "" + }, + { + "moduleCode": "DSA5812", + "title": "Data Analytics: Further Principles and Practice", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed DSA5811 Data Analytics: Principles and Practice", + "corequisite": "" + }, + { + "moduleCode": "DSA5821", + "title": "Data Visualisation: Principles and Practice", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a Bachelor’s degree", + "corequisite": "" + }, + { + "moduleCode": "DSA5822", + "title": "Data Visualisation: Further Principles and Practice", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed DSA5821 Data Visualisation: Principles and Practice", + "corequisite": "" + }, + { + "moduleCode": "DSA5831", + "title": "Learning from Data: Principles and Practice", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a Bachelor’s degree with modules/courses in calculus, linear algebra, probability, and inferential statistics\nOR\nPassed DSA5812 Data Analytics: Further Principles and Practice", + "corequisite": "" + }, + { + "moduleCode": "DSA5841", + "title": "Learning from Data: Decision Trees", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed DSA5831 Learning from Data: Principles and Practice", + "corequisite": "" + }, + { + "moduleCode": "DSA5842", + "title": "Learning from Data: Support Vector Machines", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed DSA5831 Learning from Data: Principles and Practice", + "corequisite": "" + }, + { + "moduleCode": "DSA5843", + "title": "Learning from Data: Neural Networks", + "moduleCredit": 1, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed DSA5831 Learning from Data: Principles and Practice", + "corequisite": "" + }, + { + "moduleCode": "DSC1007", + "title": "Business Analytics - Models & Decisions", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC1007X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC1007X", + "title": "Business Analytics - Models & Decisions", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "DSC1007", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC1704", + "title": "Decision Analytics using Spreadsheets", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC1007; DSC1007X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC1704X", + "title": "Decision Analytics using Spreadsheets", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC1007; DSC1007X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC2003", + "title": "Management Science", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2003 or BZ3415 or BK3503 or BK3519A or MA2215.\nAll Industrial & Systems Engineering (ISE) students.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC2006", + "title": "Operations Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH2006 or BZ2003 or BK2006 or IE3120. All Industrial & Systems (ISE) students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC2008", + "title": "Business Analytics - Data & Decisions", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ST1131/ST1131A Introduction to Statistics, ST1232 Statistics for Life Sciences and ST2334 Probability and Statistics.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC2702", + "title": "Programming for Business Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1704 Decision Analytics using Spreadsheets.", + "corequisite": "" + }, + { + "moduleCode": "DSC2703", + "title": "Operations and Technology Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3201", + "title": "Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3201 or BZ3402 or BK3505 or IE4220 or CS5262.\nAll Industrial & Systems Engineering (ISE) students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006 or BH2006 or BZ2003 or BK2006", + "corequisite": "" + }, + { + "moduleCode": "DSC3202", + "title": "Purchasing And Materials Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3202 or BZ3414 or BK3206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006 or BH2006 or BZ2003 or BK2006", + "corequisite": "" + }, + { + "moduleCode": "DSC3203", + "title": "Service Operations Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3203 or BZ3404 or BK3501", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006 or BH2006 or BZ2003 or BK2006", + "corequisite": "" + }, + { + "moduleCode": "DSC3211", + "title": "Internet For E-Business", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IT1004", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3214", + "title": "Introduction To Optimisation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "IE2110", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007 or [(MA1101R or MA1311) and (MA1521 or MA1102R)]", + "corequisite": "" + }, + { + "moduleCode": "DSC3215", + "title": "Stochastic Models In Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007/DSC1007X or ST2131 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "DSC3216", + "title": "Predictive Analytics in Business", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3217", + "title": "Introduction to Decision Analysis", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "All Industrial and Systems Engineering (ISE) students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3218", + "title": "Physical Distribution Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3218 or BZ3401 or BK3504", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006 or BH2006 or BZ2003 or BK2006", + "corequisite": "" + }, + { + "moduleCode": "DSC3219", + "title": "Quality Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IE2130", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1131A and DSC2006", + "corequisite": "" + }, + { + "moduleCode": "DSC3222", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006", + "corequisite": "" + }, + { + "moduleCode": "DSC3222C", + "title": "TIOSCM: Management Of Invention and Innovation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3222K", + "title": "TIOSCM: Logistics and Transportation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC3201 is co-requisite while DSC 2006 is a pre-requisite", + "corequisite": "" + }, + { + "moduleCode": "DSC3222M", + "title": "TIOSCM: Business Practicum", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Student should have completed all levels 1000 and 2000 foundation modules.", + "corequisite": "" + }, + { + "moduleCode": "DSC3222X", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3222Y", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3222Z", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3223", + "title": "Operations Strategy", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007or ST1131 or ST1232 or MA2216 or ST2131 or ST2334 or EE2003 or ME2491", + "corequisite": "" + }, + { + "moduleCode": "DSC3224", + "title": "Dynamic Pricing & Revenue Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007 or IE2110 or DSC3214", + "corequisite": "" + }, + { + "moduleCode": "DSC3225", + "title": "Project Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3226", + "title": "Sustainable Operations Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006 Operations Management", + "corequisite": "" + }, + { + "moduleCode": "DSC3227", + "title": "Technology and Business Innovation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "DSC3213, DOS3811, DOS3711", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC3229", + "title": "Independent Study in Ops & Supply Chain Mgt", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "DSC3239", + "title": "Independent Study in Ops & Supply Chain Mgt", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however,\nstudents will have to have completed the core modules of\nthe BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics" + }, + { + "moduleCode": "DSC4211", + "title": "Seminar in Operations and Supply Chain Management (SIOSCM)", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary depending on specific modules offered.", + "corequisite": "" + }, + { + "moduleCode": "DSC4211C", + "title": "SIOSCM: Operations Strategy", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC4211E", + "title": "SIOSCM: Decision Models in Banking", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1131A", + "corequisite": "" + }, + { + "moduleCode": "DSC4211F", + "title": "SIOSCM: Independent Study Module", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC4211G", + "title": "SIOSCM: Service Design", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2006 Operations Management", + "corequisite": "" + }, + { + "moduleCode": "DSC4211X", + "title": "Seminars in Operations and Supply Chain Management", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC4212", + "title": "Managerial Decision Analysis", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007 and BSP1005", + "corequisite": "" + }, + { + "moduleCode": "DSC4213", + "title": "Analytical Tools for Consulting", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007 or IE2110 or DSC3214", + "corequisite": "" + }, + { + "moduleCode": "DSC4214", + "title": "Co-ordination and Flexibility in SCM", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC3201", + "corequisite": "" + }, + { + "moduleCode": "DSC4215", + "title": "Data Visualisation", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Operations and Technology Management", + "corequisite": "" + }, + { + "moduleCode": "DSC4216", + "title": "Business-driven Technology", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC3201 Supply Chain Management", + "corequisite": "" + }, + { + "moduleCode": "DSC4217", + "title": "Business Analytics with R", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1007 Business Analytics – Models and Decisions;\nand\nDSC2008 Business Analytics – Data and Decisions", + "corequisite": "" + }, + { + "moduleCode": "DSC4219", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "DSC4229", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics." + }, + { + "moduleCode": "DSC5101", + "title": "Analytics in Managerial Economics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC5102", + "title": "Business Analytics Capstone Project", + "moduleCredit": 12, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC5103", + "title": "Statistics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSC5106", + "title": "Foundation in Data Analytics I", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BT4222 Mining Web Data for Business Insights,\nST5202 Applied Regression Analysis,\nST5318 Statistical Methods for Health Science", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MSBA students with familiarity with Python programming", + "corequisite": "" + }, + { + "moduleCode": "DSC5221A", + "title": "Managing the Financial Supply Chain", + "moduleCredit": 2, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "DSC5211A Supply Chain Co-ordination & Risk Management", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DSN3702", + "title": "Descriptive Analytics with R", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1704 Decision Analytics using Spreadsheets", + "corequisite": "" + }, + { + "moduleCode": "DSN4712", + "title": "Statistical Learning for Managerial Decision", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1704 Decision Analytics using Spreadsheets", + "corequisite": "" + }, + { + "moduleCode": "DSN4761", + "title": "Seminars in Analytics", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC1704 Decision Analytics using Spreadsheets", + "corequisite": "" + }, + { + "moduleCode": "DSS4711", + "title": "Supply Chain Applied Project", + "moduleCredit": 4, + "department": "Analytics and Operations", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DSC2703 Operations and Technology Management", + "corequisite": "" + }, + { + "moduleCode": "DTS2701", + "title": "Engineering Mathematics", + "moduleCredit": 2, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS3001", + "title": "Defence Technology Systems Project", + "moduleCredit": 2, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5001", + "title": "Fundamental Mathematics and Physics", + "moduleCredit": 6, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5002", + "title": "C4isr", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5003", + "title": "Firepower & Infrastructure Protection", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5111", + "title": "Land Systems", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5121", + "title": "Air Systems", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5131", + "title": "Naval Systems", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5201", + "title": "Communications", + "moduleCredit": 5, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5202", + "title": "Electronic Warfare", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5203", + "title": "Computer Networks and Data Fusion", + "moduleCredit": 2, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5204", + "title": "Sensors", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5205", + "title": "Lasers and Electro-Optics", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5311", + "title": "Advanced Communications", + "moduleCredit": 5, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5312", + "title": "Advanced Sensors", + "moduleCredit": 5, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5321", + "title": "Physics of Weapon Systems", + "moduleCredit": 6, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5322", + "title": "Control, Guidance & Propulsion", + "moduleCredit": 5, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5331", + "title": "Engineering Materials", + "moduleCredit": 5, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5332", + "title": "Protection Technology", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5401", + "title": "Operations Modelling & Decision Making", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5402", + "title": "Operational Test & Experimentation", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5403", + "title": "Systems Engineering", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5404", + "title": "Systems Simulation & Heuristics", + "moduleCredit": 2, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5405", + "title": "Defence Systems Assessment & Modelling", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5701", + "title": "Large Scale Systems Engineering", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5702", + "title": "C3 Systems", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5703", + "title": "Operations Research", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5704", + "title": "Integrated Logistics Support", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5707", + "title": "Modelling and Simulation", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5708", + "title": "Survivability", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5710", + "title": "Information Operations", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5711", + "title": "Integration Project", + "moduleCredit": 8, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5712", + "title": "Thesis Project", + "moduleCredit": 8, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5713", + "title": "Systems Engineering & Design", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5720", + "title": "Systems Engineering Project Management", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "SDM5004 Systems Engineering Project Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5721", + "title": "Power Pack For Military Vehicles", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5722", + "title": "Advanced Protection Design", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5723", + "title": "Vehicle Dynamics", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5724", + "title": "Design and Case Studies", + "moduleCredit": 3, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5725", + "title": "Model-Based Systems Engineering", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "SDM5010 Model-Based Systems Engineering", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5726", + "title": "Fundamentals of Systems Engineering and Architecting", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "IE5402 Systems Engineering and Architecture\nSyE5001 Systems Engineering and Architecture\nSDM5001 Systems architecture\nSDM 5002 Systems Engineering\nDTS5716 Systems Approach to Engineering Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5727", + "title": "Operational Test and Evaluation", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Background in systems engineering and statistics is desired.", + "corequisite": "" + }, + { + "moduleCode": "DTS5729", + "title": "Research Thesis", + "moduleCredit": 16, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5731", + "title": "Fundamentals of Systems Engineering", + "moduleCredit": 2, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 2 + ], + "preclusion": "IE5402 Systems Engineering and Architecture\nSyE5001 Systems Engineering and Architecture\nSDM 5002 Systems Engineering\nDTS5726 Fundamentals of Systems Engineering and Architecture", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5732", + "title": "Artificial Intelligence and Data Analytics", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Probability, statistics, linear algebra, and calculus.", + "corequisite": "" + }, + { + "moduleCode": "DTS5733", + "title": "Sensors and Intelligence", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5734", + "title": "Guided Systems", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic undergraduate mathematics at the level of\nDTS2701 Engineering Mathematics\nDTS2703 Probability and Statistics", + "corequisite": "" + }, + { + "moduleCode": "DTS5735", + "title": "Cybersecurity", + "moduleCredit": 4, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DTS5736", + "title": "Systems Design Project", + "moduleCredit": 2, + "department": "Temasek Defence Systems Inst", + "faculty": "Temasek Defence Sys. Institute", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DTS5731 Fundamentals of Systems Engineering", + "corequisite": "DTS5701 Large Scale Systems Engineering" + }, + { + "moduleCode": "DY5190", + "title": "Graduate Seminar module", + "moduleCredit": 0, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DY5310", + "title": "Endodontics", + "moduleCredit": 0, + "department": "Division of Graduate Dental Studies", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DY5320", + "title": "Oral & Maxillofacial Surgery", + "moduleCredit": 0, + "department": "Division of Graduate Dental Studies", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DY5330", + "title": "Orthodontics", + "moduleCredit": 0, + "department": "Division of Graduate Dental Studies", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DY5340", + "title": "Periodontology", + "moduleCredit": 0, + "department": "Division of Graduate Dental Studies", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DY5350", + "title": "Prosthodontics", + "moduleCredit": 0, + "department": "Division of Graduate Dental Studies", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "DY5360", + "title": "Paediatric Dentistry", + "moduleCredit": 0, + "department": "Division of Graduate Dental Studies", + "faculty": "Dentistry", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EB5001", + "title": "Big Data Engineering for Analytics", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no hard prerequisites in terms of existing courses, but it would be desirable for students to have some of familiarity with distributed computing, business intelligence and business analytics.", + "corequisite": "" + }, + { + "moduleCode": "EB5002", + "title": "Text Processing Using Machine Learning", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "KE5205", + "corequisite": "" + }, + { + "moduleCode": "EB5101", + "title": "Foundations of Business Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EB5102", + "title": "Data Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5103", + "title": "Advanced Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics\nEB5002 Data Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5104", + "title": "Decision Making and Optimization", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5105", + "title": "Enterprise Business Analytics Project", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics\nEB5002 Data Analytics\nEB5003 Advanced Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5106", + "title": "Enterprise Business Analytics Overseas Practicum", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "Students that select EB5105 Enterprise Business Analytics Project cannot also select the Enterprise Business Analytics Overseas Practicum and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Before commencing the Enterprise Business Analytics Overseas Practicum, the students must successfully complete the four MTech EBAC core courses:\n\nEB5101 Foundations of Business Analytics\nEB5102 Data Analytics\nEB5103 Advanced Analytics\nEB5104 Decision Making and Optimization\n\nIn addition, they must demonstrate in the electives they have taken and/or in their work experience that they have the technical background for the project being offered by NOC.", + "corequisite": "" + }, + { + "moduleCode": "EB5201", + "title": "Campaign Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5202", + "title": "Web Analytics", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5203", + "title": "Customer Relationship Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5204", + "title": "New Media and Sentiment Mining", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5205", + "title": "Clinical Health Analytics", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5206", + "title": "Supply Chain Analytics", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5207", + "title": "Service Analytics", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EB5001 Foundations of Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "EB5208", + "title": "Geospatial Analytics", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no hard prerequisites in terms of existing courses, but it would be desirable for students to have some interest in data mining.", + "corequisite": "" + }, + { + "moduleCode": "EBA5001", + "title": "Management of Business Analytics Project", + "moduleCredit": 10, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EBA5002", + "title": "Business Analytics Practice", + "moduleCredit": 13, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EBA5003", + "title": "Customer Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EBA5002 Mandatory, EBA5001 Recommended", + "corequisite": "" + }, + { + "moduleCode": "EBA5004", + "title": "Practical Language Processing", + "moduleCredit": 13, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EBA5002 Mandatory, EBA5001 Recommended", + "corequisite": "" + }, + { + "moduleCode": "EBA5005", + "title": "Specialized Predictive Modelling and Forecasting", + "moduleCredit": 10, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EBA5002 Mandatory, EBA5001 Recommended, Qlik Sense Tools or equivalent for Service Analytics", + "corequisite": "" + }, + { + "moduleCode": "EBA5006", + "title": "Big Data Engineering and Web Analytics", + "moduleCredit": 10, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EBA5002 Mandatory, EBA5001 Recommended", + "corequisite": "" + }, + { + "moduleCode": "EBA5007", + "title": "Capstone Project in Data Analytics", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EBA5001, EBA5002", + "corequisite": "" + }, + { + "moduleCode": "EC1101E", + "title": "Introduction to Economic Analysis", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC1301, BSP1005/BSP1703, RE1704.\nAll BBA and BBA(Hons) students are not allowed to take EC1101E.\nAll BAC and BAC (Hons) students from Cohort 2016 and before are not allowed to take EC1101E.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC1301", + "title": "Principles of Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC1101E, BSP1005/BSP1703, RE1704.\nAll BBA and BBA(Hons) students are not allowed to take EC1101E.\nAll BAC and BAC (Hons) students from Cohort 2016 and before are not allowed to take EC1101E.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC2101", + "title": "Microeconomic Analysis I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC1101E or EC1301 or RE1704 or BSP1005/BSP1703", + "corequisite": "" + }, + { + "moduleCode": "EC2102", + "title": "Macroeconomic Analysis I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "BSP2001, BSE3701", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC1101E or EC1301 or RE1704 or BSP1005/BSP1703", + "corequisite": "" + }, + { + "moduleCode": "EC2104", + "title": "Quantitative Methods for Economic Analysis", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any 2MC MA modules and 4MC MA modules that is not MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC2204", + "title": "Financial Accounting for Economists", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ACC1002, ACC1002X, ACC1701, ACC1701X", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC1101E or EC1301 or GET1023", + "corequisite": "" + }, + { + "moduleCode": "EC2205", + "title": "Economic Analysis of Business", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "All BBA, BAC, BBA (Hons) and BAC(Hons) students are not allowed to take EC2205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC1101E, EC1301", + "corequisite": "" + }, + { + "moduleCode": "EC2303", + "title": "Foundations for Econometrics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "All ST and SA modules, DSC1007 or DSC1007X, MA2216, BT1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC2374", + "title": "Economy of Modern China I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC1101E or EC1301 or RE1704 or BSP1005/BSP1703", + "corequisite": "" + }, + { + "moduleCode": "EC2383", + "title": "Environmental Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC3383", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC1301 or EC1101E or BSP1703/BSP1005 or RE1704", + "corequisite": "" + }, + { + "moduleCode": "EC2880", + "title": "Topics in Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3101", + "title": "Microeconomic Analysis II", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3102", + "title": "Macroeconomic Analysis II", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2102, EC2101, AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3303", + "title": "Econometrics I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST3131", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EC1101E or EC1301 or BSP1005) and (EC2303 or DSC1007 or DSC1007X or any ST or SA module or MA2216)", + "corequisite": "" + }, + { + "moduleCode": "EC3304", + "title": "Econometrics II", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EC3303 OR ST3131) AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3305", + "title": "Programming Tools for Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2303", + "corequisite": "" + }, + { + "moduleCode": "EC3312", + "title": "Game Theory & Applications to Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "MA4264", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 and (EC2104 or any MA module that is not MA1301/MA1301FC/MA1301X or MA1311 or MA1312 or MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3314", + "title": "Mathematics for Economists", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EC3311, B.Eng. degree students, and students who major in Mathematics/Applied Mathematics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EC2104 or MA1101R or MA1102R or MA1505 or MA1506 or MA1507 or MA1508) and (EC2101 and EC2102)", + "corequisite": "" + }, + { + "moduleCode": "EC3322", + "title": "Industrial Organisation I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "IS3240, CS3265", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3332", + "title": "Money and Banking I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2102 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3333", + "title": "Financial Economics I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2102 OR BSP2001) AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3342", + "title": "International Trade I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC3341", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 and EC2102", + "corequisite": "" + }, + { + "moduleCode": "EC3343", + "title": "International Finance I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC3341", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 and EC2102", + "corequisite": "" + }, + { + "moduleCode": "EC3351", + "title": "Public Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3361", + "title": "Labour Economics I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "YSS3244", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101, (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421), AND EC3303", + "corequisite": "" + }, + { + "moduleCode": "EC3362", + "title": "Population Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3371", + "title": "Development Economics I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "\"EC2101, (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421), AND EC3303\"", + "corequisite": "" + }, + { + "moduleCode": "EC3373", + "title": "Asean Economies", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3375, EC3376, EU3214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101", + "corequisite": "" + }, + { + "moduleCode": "EC3374", + "title": "Economy of Modern China II", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2374 or [EC2101 and EC2102/BSP2001]", + "corequisite": "" + }, + { + "moduleCode": "EC3375", + "title": "Economy and Business of Japan and Korea", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101", + "corequisite": "" + }, + { + "moduleCode": "EC3376", + "title": "Economics of European Integration", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3373, EC3375, EU3214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 and EC2102", + "corequisite": "" + }, + { + "moduleCode": "EC3378", + "title": "Emerging India in Asia's Economic Integration", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2102", + "corequisite": "" + }, + { + "moduleCode": "EC3381", + "title": "Urban Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "RE2102, RE2705", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3384", + "title": "Resource and Energy Economics I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 AND (EC2104 OR ANY MA MODULE THAT IS NOT MA1301/MA1301FC/MA1301X OR MA1311 OR MA1312 OR MA1421)", + "corequisite": "" + }, + { + "moduleCode": "EC3385", + "title": "Maritime and Shipping Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101", + "corequisite": "" + }, + { + "moduleCode": "EC3386", + "title": "Port Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3391", + "title": "Evolution of Economic Thought & Analysis", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3393", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed in GCE A Level Economics or EC1301 or EC1101E or BH1005/BSP1005 or USE2301", + "corequisite": "" + }, + { + "moduleCode": "EC3392", + "title": "European Economic History", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3391, EC3393, EU3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3393", + "title": "Comparative Economic Systems", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3391, EC3392, EU3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed in GCE A Level Economics or EC1301 or EC1101E or BSP1005/BH1005 or USE2301", + "corequisite": "" + }, + { + "moduleCode": "EC3394", + "title": "Economics and Psychology", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 Microeconomic AnalysisI\nEC2102 Macroeconomic AnalysisI and\nEC3303 Econometrics I", + "corequisite": "" + }, + { + "moduleCode": "EC3395", + "title": "Economics and Ethics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101, EC2102, EC3101, EC3102", + "corequisite": "" + }, + { + "moduleCode": "EC3396", + "title": "Economic Analysis of Law I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101", + "corequisite": "" + }, + { + "moduleCode": "EC3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "EC3880", + "title": "Topics in Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101 Microeconomic Analysis I and EC2102 Macroeconomic Analysis I", + "corequisite": "" + }, + { + "moduleCode": "EC3880A", + "title": "Topics in Economics: Understanding Government", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PP5141", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC2101, EC2102, EC3101 and EC3102", + "corequisite": "" + }, + { + "moduleCode": "EC3880C", + "title": "Topics in Economics: Economic History of Southeast Asia", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3880D", + "title": "Topics in Economics: Empire, Economics, and Identity", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3880E", + "title": "Topics in Economics: The Rise and Fall of Great Cities", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3880F", + "title": "Topics in Economics: Miracle and Crisis in East Asia", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC3880G", + "title": "Topics in Economics: Introduction to Health Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC4103", + "title": "Singapore Economy: Practice and Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards: Completed 110MCs including 60MCs in EC, with minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303", + "corequisite": "" + }, + { + "moduleCode": "EC4301", + "title": "Microeconomic Analysis III", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs including 28MCs in EC, with a minimum CAP of\n3.20 or be on the Honours track. Prerequisite(s): minimum average grade point for EC3101 and EC3102 together of 4.0 Note: If you do not have the current prerequisites for EC4301 and EC4302, but have:\n1.\tpassed at least 56 MCs in Economics modules (inclusive of EC3101 and EC3102), and\n2.\tobtained an SJAP (average grade of all Economics modules) of at least 3.50,\nthen you may submit an appeal to waive the prerequisites for EC4301 and EC4302.", + "corequisite": "" + }, + { + "moduleCode": "EC4302", + "title": "Macroeconomic Analysis III", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs including 28MCs in EC, with a minimum CAP of\n3.20 or be on the Honours track. Prerequisite(s): minimum average grade point for EC3101 and EC3102 together of 4.0 Note: If you do not have the current prerequisites for EC4301 and EC4302, but have:\n1. passed at least 56 MCs in Economics modules (inclusive of EC3101 and EC3102), and \n2. obtained an SJAP (average grade of all Economics modules) of at least 3.50,\nthen you may submit an appeal to waive the prerequisites for EC4301 and EC4302.", + "corequisite": "" + }, + { + "moduleCode": "EC4303", + "title": "Econometrics III", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102 and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4304", + "title": "Economic and Financial Forecasting", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3303 and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4305", + "title": "Applied Econometrics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4306", + "title": "Applied Microeconomic Analysis", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC4301", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101.", + "corequisite": "" + }, + { + "moduleCode": "EC4307", + "title": "Issues in Macroeconomics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3102.", + "corequisite": "" + }, + { + "moduleCode": "EC4308", + "title": "Machine Learning and Economic Forecasting", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track.\nEC3304", + "corequisite": "" + }, + { + "moduleCode": "EC4311", + "title": "Mathematical Economic Analysis", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of\n3.20 or be on the Honours track. EC3101 and EC3102.", + "corequisite": "" + }, + { + "moduleCode": "EC4313", + "title": "Search Theory and Applications", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3102.", + "corequisite": "" + }, + { + "moduleCode": "EC4322", + "title": "Industrial Organisation II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and (EC3322 or EC3312).", + "corequisite": "" + }, + { + "moduleCode": "EC4323", + "title": "Income Distribution Analysis", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102 and (EC3303 or ST3131).", + "corequisite": "" + }, + { + "moduleCode": "EC4324", + "title": "Economics of Competition Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and (EC3312 or EC3322).", + "corequisite": "" + }, + { + "moduleCode": "EC4331", + "title": "Monetary Economics and Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3102 and EC3332.", + "corequisite": "EC4302" + }, + { + "moduleCode": "EC4332", + "title": "Money and Banking II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3332.", + "corequisite": "" + }, + { + "moduleCode": "EC4333", + "title": "Financial Economics II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA3245 and MA4269", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102 and EC3333.", + "corequisite": "" + }, + { + "moduleCode": "EC4334", + "title": "Financial Market Microstructure", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3304, and EC3333.", + "corequisite": "" + }, + { + "moduleCode": "EC4342", + "title": "International Trade II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC4341", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC modules, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3342", + "corequisite": "" + }, + { + "moduleCode": "EC4343", + "title": "International Finance II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC modules, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3343", + "corequisite": "" + }, + { + "moduleCode": "EC4351", + "title": "Public Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3351.", + "corequisite": "" + }, + { + "moduleCode": "EC4352", + "title": "Singapore Economy: Practice and Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EC4103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303", + "corequisite": "" + }, + { + "moduleCode": "EC4353", + "title": "Health Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs including 28MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4354", + "title": "Economics of Education", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards:\nCompleted 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC4355", + "title": "Economics of Ageing", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3305", + "corequisite": "" + }, + { + "moduleCode": "EC4361", + "title": "Labour Economics II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards: \nCompleted 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3361.", + "corequisite": "" + }, + { + "moduleCode": "EC4362", + "title": "Immigration Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and (EC3351 or EC3361 or EC3371).", + "corequisite": "" + }, + { + "moduleCode": "EC4363", + "title": "Applied Population Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3361.", + "corequisite": "" + }, + { + "moduleCode": "EC4371", + "title": "Development Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303", + "corequisite": "" + }, + { + "moduleCode": "EC4372", + "title": "Technology and Innovation", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC4373", + "title": "Policy Issues of Singapore Economy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SE4321", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC4377", + "title": "Global Economic History", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3377", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs including 28MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. \nEC3101 and EC3304", + "corequisite": "" + }, + { + "moduleCode": "EC4382", + "title": "Transport Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs including 28MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4383", + "title": "Environmental Economics and Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs including 28MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4384", + "title": "Resource and Energy Economics II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, EC3303, and EC3384.", + "corequisite": "" + }, + { + "moduleCode": "EC4387", + "title": "Housing Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4391", + "title": "Economics of Entrepreneurship", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3303", + "corequisite": "" + }, + { + "moduleCode": "EC4392", + "title": "Comparative Business Cultures", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of\n3.20 or be on the Honours track. EC3376 or EC3392 or EU3214 or EU3215.", + "corequisite": "" + }, + { + "moduleCode": "EC4394", + "title": "Behavioural Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101", + "corequisite": "" + }, + { + "moduleCode": "EC4396", + "title": "Economic Analysis of Law II", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track EC3101, EC3102, and EC3396.", + "corequisite": "" + }, + { + "moduleCode": "EC4398", + "title": "Economics of Inequality", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3304.", + "corequisite": "" + }, + { + "moduleCode": "EC4399", + "title": "Behavioural Public Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a\nminimum CAP of 3.20 or be on the Honours track.\nEC3101, EC3304, and (EC3394 or EC4394)", + "corequisite": "" + }, + { + "moduleCode": "EC4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC4660, XFA4401, XFA4402, XFA4406", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015\n(1) Completed 110 MCs including 60 MCs of EC major requirements (or be on the Honours Track)\n(2) Minimum SJAP of 4.00 and CAP of 3.50\nStudents may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards\n(1) Completed 110 MCs including 44 MCs of EC major requirements (or be on the Honours Track)\n(2) Minimum SJAP of 4.00 and CAP of 3.50\nStudents may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "EC4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC4401 or EC4401S or XFA4401 or XFA4402 or XFA4406", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered subject to the agreement of the Supervisor and Department.\nCohort 2012-2015\n(1) Completed 100 MCs, with 60 MCs in EC\n(2) Minimum CAP of 3.20\n\nCohort 2016 onwards\n(1) Completed 100 MCs, with 44 MCs in EC\n(2) Minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "EC4753", + "title": "Department exchange module", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC4880", + "title": "Topics in Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track EC3101 and EC3102.", + "corequisite": "" + }, + { + "moduleCode": "EC4880A", + "title": "Topics in Economics: Economics of Careers", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101 and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC4881", + "title": "Topics in Econometrics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC4882", + "title": "Topics in Applied Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC4883", + "title": "Topics in Economic Policy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EC, with a minimum CAP of 3.20 or be on the Honours track. EC3101, EC3102, and EC3303.", + "corequisite": "" + }, + { + "moduleCode": "EC5101", + "title": "Microeconomic Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5101R", + "title": "Microeconomic Theory", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5102", + "title": "Macroeconomic Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5102R", + "title": "Macroeconomic Theory", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5103", + "title": "Econometric Modelling and Applications I", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5154", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5253/EC5304/ECA5103", + "corequisite": "" + }, + { + "moduleCode": "EC5103R", + "title": "Econometric Modelling and Applications I", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5154", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5253/EC5304/ECA5103", + "corequisite": "" + }, + { + "moduleCode": "EC5104", + "title": "Mathematics for Economists", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5210 and EC5311", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5104R", + "title": "Mathematics for Economists", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5210, EC5311", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5305", + "title": "Computational Methods in Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5101 Microeconomic Theory \nEC5102 Macroeconomic Theory", + "corequisite": "" + }, + { + "moduleCode": "EC5314", + "title": "Time Series Analysis", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5154/EC5103", + "corequisite": "" + }, + { + "moduleCode": "EC5314R", + "title": "Time Series Analysis", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5154/EC5103", + "corequisite": "" + }, + { + "moduleCode": "EC5319", + "title": "Experimental Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5101", + "corequisite": "" + }, + { + "moduleCode": "EC5322", + "title": "Industrial Organisation", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5215, EC5268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5322R", + "title": "Industrial Organisation", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5215, EC5268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5324", + "title": "Cost-Benefit Analysis", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5216, EC5264/EC5325/ECA5325", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5324R", + "title": "Cost- Benefit Analysis", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5216, EC5264/EC5325/ECA5325", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5326", + "title": "Policy Impact Evaluation Methods", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5326R", + "title": "Policy Impact Evaluation Methods", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5332", + "title": "Money & Banking", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5332R", + "title": "Money & Banking", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5342", + "title": "International Trade", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EC5265, IZ5202. Students who have already taken (or concurrently taking) courses in International Economics at the graduate level should not take this course, since there may be considerable overlapping of material.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Undergraduate major in Economics", + "corequisite": "" + }, + { + "moduleCode": "EC5342R", + "title": "International Trade", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EC5265, IZ5202. Students who have already taken (or concurrently taking) courses in International Economics at the graduate level should not take this course, since there may be considerable overlapping of material.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Undergraduate major in Economics", + "corequisite": "" + }, + { + "moduleCode": "EC5352", + "title": "Public Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5267,EC5209/EC5351/ECA5351", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5352R", + "title": "Public Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5267,EC5209/EC5351/ECA5351", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5353", + "title": "Health Economics & Policy", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5361", + "title": "Labour Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5361R", + "title": "Labour Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5372", + "title": "Growth Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5383", + "title": "Economics of the Environment", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5218", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5386", + "title": "Issues in Port Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic level mathematics, economics, and statistics. Previous work experience and knowledge of the maritime transport industry, specially ports and shipping.", + "corequisite": "" + }, + { + "moduleCode": "EC5386R", + "title": "Issues in Port Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic level mathematics, economics, and statistics. Previous work experience and knowledge of the maritime transport industry, specially ports and shipping.", + "corequisite": "" + }, + { + "moduleCode": "EC5387", + "title": "Issues in Maritime and Shipping Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have read EC2104 Quantitative Methods for Economic Analysis OR EC2303 Foundations for Econometrics AND EC3101 Microeconomic Analysis II or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EC5387R", + "title": "Issues in Maritime and Shipping Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have read EC2104 Quantitative Methods for Economic Analysis OR EC2303 Foundations for Econometrics AND EC3101 Microeconomic Analysis II or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EC5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5880", + "title": "Topics in Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC4101", + "corequisite": "" + }, + { + "moduleCode": "EC5880R", + "title": "Topics in Economics", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC4101", + "corequisite": "" + }, + { + "moduleCode": "EC5881", + "title": "Topics in Microeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "EC5882", + "title": "Topics in Macroeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC5883", + "title": "Topics in Applied Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6101", + "title": "Advanced Microeconomic Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6102", + "title": "Advanced Macroeconomic Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6103", + "title": "Econometric Modelling and Applications Ii", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6154", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5154/EC5103", + "corequisite": "" + }, + { + "moduleCode": "EC6104", + "title": "Advanced Mathematics for Economists", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6210 and EC6311", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6312", + "title": "Advanced Game Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6313", + "title": "Topics in Econometrics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5154/EC5103", + "corequisite": "" + }, + { + "moduleCode": "EC6314", + "title": "Advanced Time Series Analysis", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6316", + "title": "Contract Theory and Applications", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5101 Microeconomic Theory\nand\nEC5104 Mathematical Economics", + "corequisite": "" + }, + { + "moduleCode": "EC6322", + "title": "Advanced Industrial Organisation", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6215, EC6268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6332", + "title": "Advanced Money & Banking", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6341", + "title": "Advanced International Trade and Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6342", + "title": "Advanced International Trade", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6265", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6343", + "title": "Advanced International Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6259", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6351", + "title": "Advanced Public Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6209", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6352", + "title": "Advanced Public Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6267", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6361", + "title": "Advanced Labour Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5361 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EC6371", + "title": "Advanced Development Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6262", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6372", + "title": "Advanced Growth Theory", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6880", + "title": "Topics in Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC6220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6881", + "title": "Advanced Topics in Microeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6882", + "title": "Advanced Topics in Macroeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6883", + "title": "Advanced Topics in Applied Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EC6884", + "title": "Behavioral and Experimental Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5101", + "title": "Microeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5151, EC5101A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5102", + "title": "Macroeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5152, EC5102A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5103", + "title": "Quantitative & Computing Methods", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5253, EC5304", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5304", + "title": "Machine Learning and Economic Forecasting", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5305", + "title": "Programming for Economists", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5313", + "title": "Topics in Econometrics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 3 + ], + "preclusion": "ECA5253/ECA5304/ECA5103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5315", + "title": "Financial Econometrics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5261, EC5315", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5274/EC5333/ECA5333", + "corequisite": "" + }, + { + "moduleCode": "ECA5325", + "title": "Project & Policy Evaluation", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5264, EC5216/EC5324", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5333", + "title": "Financial Markets & Portfolio Management", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5274/EC5333. In addition, candidates who have passed EC4209/EC4333 or its equivalent may, with the approval of the Head of the Department, be exempted to read module EC5274/ECA5333. For these candidates, the requirements of EC5274/ECA5333 as a prerequisite for other modules will then be waived.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5334", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5269/EC5334", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EC5274/EC5333/ECA5333", + "corequisite": "" + }, + { + "moduleCode": "ECA5335", + "title": "Derivative Securities", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 4 + ], + "preclusion": "EC5260", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5337", + "title": "Applied Financial Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5341", + "title": "International Trade & Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5211/EC5341", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5351", + "title": "Public Finance", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5209/EC5351", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5371", + "title": "Economic Growth And Development", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5262, EC5263, IZ5201, EC5371", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5372", + "title": "Big Data Analytics and Technologies", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5373", + "title": "The Singapore Economy", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5205, EC5255, EC5373", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5373R", + "title": "The Singapore Economy", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5205, EC5255, EC5373", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5374", + "title": "The Modern Chinese Economy", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5271, EC5374", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ECA5101/EC5101A/EC5151 or EC5101 or EC4101/EC4151 or EC5102 or ECA5103/EC5304/EC5253 or EC4152/EC4102", + "corequisite": "" + }, + { + "moduleCode": "ECA5375", + "title": "Economic Growth in East Asia", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EC5266, IZ5212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5376", + "title": "Auctions and Market Design", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ECA5101: Microeconomics", + "corequisite": "" + }, + { + "moduleCode": "ECA5377", + "title": "Behavioural Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have taken intermediate microeconomic principles at a similar level as EC3101.", + "corequisite": "" + }, + { + "moduleCode": "ECA5381", + "title": "Urban Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5383", + "title": "Environmental Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ECA5101 Microeconomics", + "corequisite": "" + }, + { + "moduleCode": "ECA5394", + "title": "Cultural Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5272/EC5394", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5395", + "title": "Political Economy of Globalisation", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC5213, EC5273/EC5395", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5396", + "title": "Economics of Business and Law of Intellectual Assets", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5880", + "title": "Topics in Applied Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5881", + "title": "Topics in Economic Policy", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5882", + "title": "Topics in Applied Macroeconomics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ECA5884", + "title": "Applied Behavioural Economics", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ECA5101 Microeconomics\nECA5103 Quantitative & Computing Methods", + "corequisite": "" + }, + { + "moduleCode": "EE1001", + "title": "Emerging Technologies in Electrical Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE1001FC/EE1001X", + "attributes": [ + true, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Math, and A-level Physics", + "corequisite": "" + }, + { + "moduleCode": "EE1001X", + "title": "Emerging Technologies in Electrical Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE1001, EE1001FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Math, and A-level Physics", + "corequisite": "" + }, + { + "moduleCode": "EE1002", + "title": "Introduction to Circuits and Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1108/CG1108 Electrical Engineering", + "attributes": [ + true, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Physics", + "corequisite": "" + }, + { + "moduleCode": "EE1003", + "title": "Introduction to Signals and Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Math, and A-level Physics", + "corequisite": "" + }, + { + "moduleCode": "EE1111", + "title": "Engineering Principles and Practice I", + "moduleCredit": 6, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1111 Engineering Principles and Practice I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE1111A", + "title": "Electrical Engineering Principles and Practice I", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE1111, EG1111, EE1111B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE1111B", + "title": "Electrical & Computer Engineering Principles & Practice", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE1111A, CG1111, EE1112, EG1112", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE1112", + "title": "Engineering Principles and Practice II", + "moduleCredit": 6, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1112 Engineering Principles and Practice II\nCG1111 Engineering Principles and Practice I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE2011", + "title": "Engineering Electromagnetics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505 and MA1506", + "corequisite": "" + }, + { + "moduleCode": "EE2011E", + "title": "Engineering Electromagnetics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE2011", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2002", + "corequisite": "TE2003" + }, + { + "moduleCode": "EE2012", + "title": "Analytical Methods in Electrical and Computer Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "ST2334", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1505 and MA1506) or (MA1511 and MA1512)", + "corequisite": "" + }, + { + "moduleCode": "EE2012A", + "title": "Analytical Methods in Electrical and Computer Engineering", + "moduleCredit": 3, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2012 and ST2334", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1505 and MA1506) or (MA1511 and MA1512)", + "corequisite": "" + }, + { + "moduleCode": "EE2020", + "title": "Digital Fundamentals", + "moduleCredit": 5, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE1002 or CG1108 or EG1108", + "corequisite": "CS1010E" + }, + { + "moduleCode": "EE2021", + "title": "Devices and Circuits", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE2004 and EE2005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE1002/EG1108 /CG1108", + "corequisite": "" + }, + { + "moduleCode": "EE2023", + "title": "Signals and Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2023E, CG2023, TEE2023", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1506 or MA1512", + "corequisite": "" + }, + { + "moduleCode": "EE2023E", + "title": "Signals and Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE2009E and EE2010E and TEE2023", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TG1401", + "corequisite": "" + }, + { + "moduleCode": "EE2024", + "title": "Programming for Computer Interfaces", + "moduleCredit": 5, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2020 and CS1010E", + "corequisite": "" + }, + { + "moduleCode": "EE2025", + "title": "Power Electronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE3501C Power Electronics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE1002 Introduction to Circuits and Systems (or EG1108 Electrical Engineering or CG1108 Electrical Engineering)", + "corequisite": "" + }, + { + "moduleCode": "EE2026", + "title": "Digital Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2020", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE1111A / EG1111 / CG1111", + "corequisite": "(EE2111A & CS1010E) / (EG1112 & IT1007) / CS1010" + }, + { + "moduleCode": "EE2027", + "title": "Electronic Circuits", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2021, CG2027", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2111A / EG1112", + "corequisite": "" + }, + { + "moduleCode": "EE2028", + "title": "Microcontroller Programming and Interfacing", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2024, CG2028", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2028A/IT1007 and EE2026", + "corequisite": "" + }, + { + "moduleCode": "EE2028A", + "title": "C Programming", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "CS1010E" + }, + { + "moduleCode": "EE2029", + "title": "Introduction to Electrical Energy Systems", + "moduleCredit": 3, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE3506C - Introduction to Electrical Energy Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2111A Electrical Engineering Principles and Practice II\n/ EE1112 Engineering Principles and Practice II /\nEG1112 Engineering Principles and Practice II /\nCG1111 Engineering Principles and Practice I", + "corequisite": "" + }, + { + "moduleCode": "EE2031", + "title": "Circuit and Systems Design Lab", + "moduleCredit": 3, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021 Devices and Circuits", + "corequisite": "" + }, + { + "moduleCode": "EE2032", + "title": "Signals & Communications Design Lab", + "moduleCredit": 3, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2011 Engineering Electromagnetism and EE2023 Signals and Systems.", + "corequisite": "" + }, + { + "moduleCode": "EE2033", + "title": "Integrated System Lab", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2031, EE2032", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023, EE2027", + "corequisite": "" + }, + { + "moduleCode": "EE2111A", + "title": "Electrical Engineering Principles and Practice II", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EG1112/ME2104, CG1111, EE1112", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE2211", + "title": "Introduction to Machine Learning", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010E and (MA1511 / MA1505) and (MA1508E / MA1513 / CE2407)\n\nAdvisory: MSE students do not take (MA1511 / MA1505); MSE students will self-study calculus. EVE students do not take (MA1508E / MA1513 / CE2407); EVE students will self-study linear algebra.", + "corequisite": "" + }, + { + "moduleCode": "EE3013C", + "title": "Labview for Electrical Engineers", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1108/CG1108 / EE1002", + "corequisite": "MA1506" + }, + { + "moduleCode": "EE3013E", + "title": "Labview for Electrical Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TEE3013", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EE2021E or TEE2027) and TG1401", + "corequisite": "" + }, + { + "moduleCode": "EE3030A", + "title": "Exploring Frugal Engineering", + "moduleCredit": 3, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least level 2 standing", + "corequisite": "" + }, + { + "moduleCode": "EE3030B", + "title": "Living Lab in the Communities", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least level 2 standing", + "corequisite": "" + }, + { + "moduleCode": "EE3031", + "title": "Innovation & Enterprise I", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3001 New Product Development\nEE3001 Project \nMT4003 Engineering Product Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE3031E", + "title": "Innovation & Enterprise I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4209, EE3001E, TEE3031", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing", + "corequisite": "" + }, + { + "moduleCode": "EE3032", + "title": "Innovation & Enterprise II", + "moduleCredit": 6, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE2001 Project\nCG3002 Embedded Systems Design Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2024 Programming for Computer Interfaces", + "corequisite": "" + }, + { + "moduleCode": "EE3104C", + "title": "Introduction to RF and Microwave Systems & Circuits", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE3104E, TEE3104 Introduction to RF and Microwave Systems & Circuits.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2020 (for AY2017 intake & after) ; EE2011 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE3104E", + "title": "Intro to RF and Microwave Sys & Circuits", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE3104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2011E", + "corequisite": "" + }, + { + "moduleCode": "EE3131C", + "title": "Communication Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE3103 Communications", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023 Signals & Systems", + "corequisite": "" + }, + { + "moduleCode": "EE3131E", + "title": "Communication Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE3103E, TEE3131", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EE2009E and EE2010E) or EE2023E", + "corequisite": "" + }, + { + "moduleCode": "EE3207E", + "title": "Computer Architecture", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TEE3207", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2007E or EE2024E or TEE2028", + "corequisite": "" + }, + { + "moduleCode": "EE3208", + "title": "Embedded Computer Systems Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CG3002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2007/EE2024", + "corequisite": "" + }, + { + "moduleCode": "EE3208E", + "title": "Embedded Computer Systems Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TE3202 and TEE3208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2007E or EE2024E or TEE2028", + "corequisite": "" + }, + { + "moduleCode": "EE3305", + "title": "Robotic System Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE3331C", + "title": "Feedback Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2010 Systems & Control", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023 Signals and Systems", + "corequisite": "" + }, + { + "moduleCode": "EE3331E", + "title": "Feedback Control Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2010E and TEE3331", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023E", + "corequisite": "" + }, + { + "moduleCode": "EE3408C", + "title": "Integrated Analog Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE3408E, TEE3408", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2027/EE2027 (for AY2017 intake & after);\nEE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE3408E", + "title": "Integrated Analog Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TEE3408", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021E or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "EE3431C", + "title": "Microelectronics Materials and Devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE3406, EE2004, PC3235", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-req : EE2027 / CG2027 / EE2021", + "corequisite": "EE2027 / CG2027 / EE2021" + }, + { + "moduleCode": "EE3431E", + "title": "Microelectronics Materials and Devices", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE3406E, EE2004E, TEE3431", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "EE2021E or TEE2027" + }, + { + "moduleCode": "EE3501E", + "title": "Power Electronics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE3501", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2005E or EE2021E or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "EE3505C", + "title": "Electrical Energy Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE2022 Electrical Energy Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE1002 Introduction to Circuits and Systems / EG1108 Electrical Engineering / CG1108 Electrical Engineering", + "corequisite": "" + }, + { + "moduleCode": "EE3506C", + "title": "Intro to Elect Energy Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE3505C Electrical Energy Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1112 / CG1111 (for AY2017 intake & after) ;\nEE1002 / EG1108 / CG1108 (for AY2016 & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE3702", + "title": "Electronic Gaming", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing", + "corequisite": "" + }, + { + "moduleCode": "EE3731C", + "title": "Signal Analytics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2012A/ST2334 and EE2023 (for AY2019 intake & after); EE2012 / ST2334 and EE2023 (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE3731E", + "title": "Signal Processing Methods", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TEE3731", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2003 and EE2023E", + "corequisite": "" + }, + { + "moduleCode": "EE3801", + "title": "Data Engineering Principles", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010/E/% and [EE2012A or ST2334 or {ST2131/MA2216 and ST2132}]\n\nAdvisory: \n-Minor in Data Engineering students should take EE3801 before EE4802 \n- Familiarity with scientific programming language such as Python. All assignments in class will be done in Python. \n% is a wildcard for any of the CS1010 variants", + "corequisite": "" + }, + { + "moduleCode": "EE4001", + "title": "B.Eng. Dissertation", + "moduleCredit": 12, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "CG4001", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 Standing", + "corequisite": "" + }, + { + "moduleCode": "EE4002D", + "title": "Design Capstone", + "moduleCredit": 8, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "EE3032; EG3301R", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Level 3 Standing", + "corequisite": "" + }, + { + "moduleCode": "EE4002R", + "title": "Research Capstone", + "moduleCredit": 8, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "EE4001, EG4301, CG4001", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Level 4 standing", + "corequisite": "" + }, + { + "moduleCode": "EE4031", + "title": "Intellectual Property: Harnessing Innovation", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5001: IP Management\nMT5010: Technology Intelligence & IP Strategy\nNote: Both are graduate level modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE4032", + "title": "Blockchain Engineering", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE4101", + "title": "RF Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2020", + "corequisite": "" + }, + { + "moduleCode": "EE4101E", + "title": "Radio-Frequency (RF) Communications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TEE4101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2011E", + "corequisite": "" + }, + { + "moduleCode": "EE4102", + "title": "Digital Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3103", + "corequisite": "" + }, + { + "moduleCode": "EE4103", + "title": "Coding Theory And Applications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2012", + "corequisite": "" + }, + { + "moduleCode": "EE4104", + "title": "Microwave Circuits & Devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3104C", + "corequisite": "" + }, + { + "moduleCode": "EE4109", + "title": "Spread Spectrum Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Co-requisite: EE4102", + "corequisite": "" + }, + { + "moduleCode": "EE4110", + "title": "RFIC and MMIC Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3104C", + "corequisite": "" + }, + { + "moduleCode": "EE4112", + "title": "Radio Frequency Design and Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE4112E, TEE4112", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2020", + "corequisite": "" + }, + { + "moduleCode": "EE4112E", + "title": "Radio Frequency Design and Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE4112", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2011E", + "corequisite": "" + }, + { + "moduleCode": "EE4113", + "title": "Digital Communications & Coding", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE4102 or EE4103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EE2012A / ST2334) and EE3131C (for AY2019 intake & after); (EE2012 / ST2334) and EE3131C (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4113E", + "title": "Digital Communications & Coding", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "EE4102E or EE4103E or TEE4113", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2003 & (EE3103E or EE3131E)", + "corequisite": "" + }, + { + "moduleCode": "EE4114", + "title": "Optical Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3131C", + "corequisite": "" + }, + { + "moduleCode": "EE4131", + "title": "Random Signals", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5306 Random Signals Analysis\nand\nEE5137R Stochastic Processes", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2012 Analytical Methods in ECE\nor\nST2334 Probability and Statistics\nand\nEE2023 Signals and Systems", + "corequisite": "" + }, + { + "moduleCode": "EE4204", + "title": "Computer Networks", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE3204, EE3204E, TEE3204, TEE4204, EE5310, EE6310", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2012A / ST2334 (for AY2019 intake & after) ; EE2012 / ST2334 (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4204E", + "title": "Computer Networks", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CS2105 and CS3103 and TEE3204, EE3204E, TEE4204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2003", + "corequisite": "" + }, + { + "moduleCode": "EE4205", + "title": "Quantum Communication and Cryptography", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For EE students: EE2012/EE2012A (Analytical methods in\nECE) and EE2023 (Signals and Systems) ;\n\nFor CEG students: ST2334 (Probability and Statistics) and\nCG2023 (Signals and Systems)", + "corequisite": "" + }, + { + "moduleCode": "EE4210", + "title": "Network Protocols and Applications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4210E, TEE4210", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2012A / ST2334 (for AY2019 intake & after) ; EE2012 / ST2334 (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4210E", + "title": "Network Protocols and Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE4210, TIC2501", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2003", + "corequisite": "" + }, + { + "moduleCode": "EE4211", + "title": "Data Science for the Internet of Things", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE4802, CS3244, IT3011", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2012A / ST2334 (for AY2019 intake & after) ; EE2012 / ST2334 (for AY2018 intake & prior)\n\nAdvisory: Familiarity with scientific programming language such as Python. All assignments in the class will be done in Python.", + "corequisite": "" + }, + { + "moduleCode": "EE4212", + "title": "Computer Vision", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CS4243", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1508E and EE3731C/EE4704 (for AY2017 intake & after) ;\nEE3206 or EE3731C (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4213", + "title": "Image and Video Processing", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CS4243", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3206", + "corequisite": "" + }, + { + "moduleCode": "EE4214", + "title": "Real-Time Embedded Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2007/EE2024", + "corequisite": "" + }, + { + "moduleCode": "EE4214E", + "title": "Real-Time Embedded Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE4214, TIC2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2101 and (EE2024E or TEE2028)", + "corequisite": "" + }, + { + "moduleCode": "EE4217", + "title": "Technology Of Digital Entertainment", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE4218", + "title": "Embedded Hardware System Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2028 or CG2028 (for AY2017 intake & after) ; EE2024 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4302", + "title": "Advanced Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE4303", + "title": "Industrial Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE3302, EE3302E, TEE3302, TEE4303", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE4303E", + "title": "Industrial Control Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TEE3302, EE3302E, TEE4303", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2010E or EE3331E", + "corequisite": "" + }, + { + "moduleCode": "EE4304", + "title": "Digital Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE3304.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2010\nEE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE4305", + "title": "Fuzzy/Neural Systems for Intelligent Robotics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023", + "corequisite": "" + }, + { + "moduleCode": "EE4305E", + "title": "Introduction To Fuzzy/Neural Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TEE4305", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2010E or EE2023E", + "corequisite": "" + }, + { + "moduleCode": "EE4306", + "title": "Distributed Autonomous Robotic Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE4307", + "title": "Control Systems Design And Simulation", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE4308", + "title": "Autonomous Robot Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4306 Distributed Autonomous Robotic Systems, \nCS4278 Intelligent Robots: Algorithms and Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3331C Feedback Control Systems or ME2142 Feedback Control Systems", + "corequisite": "" + }, + { + "moduleCode": "EE4309", + "title": "Robot Perception", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE4704 \"Introduction to Computer Vision and Image Processing\" or EE3731C “Signal Processing Methods”, or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE4401", + "title": "Optoelectronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3431C or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE4407", + "title": "Analog Electronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE3407, EE3407E, TEE3407, TEE4407", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021 (for AY2016 intake & prior) ;\nCG2027 or EE2027 (for AY2017 intake & after)", + "corequisite": "" + }, + { + "moduleCode": "EE4407E", + "title": "Analog Electronics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE3407, EE3407E, TEE4407", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021E or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "EE4408", + "title": "Silicon Device Reliability", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021", + "corequisite": "EE4411 or equivalent" + }, + { + "moduleCode": "EE4409", + "title": "Modern Microelectronic Devices & Sensors", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE3409", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2027/EE2027 (for AY2017 intake & after) ; EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4410", + "title": "Integrated Circuit And System Design", + "moduleCredit": 8, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE4410A", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "E3408C", + "corequisite": "" + }, + { + "moduleCode": "EE4410A", + "title": "Integrated Circuit Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE4410", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3408C", + "corequisite": "" + }, + { + "moduleCode": "EE4411", + "title": "Silicon Processing Technology", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "PC3242", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021", + "corequisite": "" + }, + { + "moduleCode": "EE4412", + "title": "Technology & Modelling Of Si Transistors", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021", + "corequisite": "" + }, + { + "moduleCode": "EE4415", + "title": "Integrated Digital Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4415E, TEE4415", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2026 (for AY2017 intake & after) ; EE2020 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4415E", + "title": "Integrated Digital Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE4415", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2006E or EE2020E or TEE2026", + "corequisite": "" + }, + { + "moduleCode": "EE4431", + "title": "Nano-Device Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE4413 Low Dimensional Electronic Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Either EE3431C Microelectronics Materials & Devices or EE3406 Microelectronics Materials", + "corequisite": "" + }, + { + "moduleCode": "EE4432", + "title": "Devices for Electric Energy Generation", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021 Devices and circuits", + "corequisite": "" + }, + { + "moduleCode": "EE4433", + "title": "Nanometer Scale Information Storage", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5202, EE4414", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2232 and EE3431C/EE3406", + "corequisite": "" + }, + { + "moduleCode": "EE4434", + "title": "Integrated Circuit Technology, Design and Testing", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2026 and CG2027/EE2027 (for AY2017 intake & after) ; EE2020 and EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4435", + "title": "Modern Transistors and Memory Devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TEE4435, EE4435E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2027/EE2027 and co-req EE3431C (for AY2017 intake & after) ; Pre-req EE2021 and co-req EE3431C (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4435E", + "title": "Modern Transistors and Memory Devices", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE4408E, EE4412E, TEE4435", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021E or TEE2027", + "corequisite": "EE3431E" + }, + { + "moduleCode": "EE4436", + "title": "Fabrication Process Technology", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE4411, EE4411E, EE4436E, TEE4436", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "CG2027/EE2027 (for AY2017 intake & after) ; EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4436E", + "title": "Fabrication Process Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE4411E, TEE4436", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2021E or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "EE4437", + "title": "Photonics - Principles and Applications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4401 Optoelectronics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2027/EE2027 (for AY2017 intake & after) ; EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4438", + "title": "Solar Cells and Modules", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4432 Devices for Electric Energy Generation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CG2027/EE2027 (for AY2017 intake & after) ; EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4501", + "title": "Power System Management And Protection", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2029 (for AY2019 intake & after); EE3506C (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4502", + "title": "Electric Drives & Control", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2029 (for AY2019 intake & after); EE3506C (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4503", + "title": "Power Electronics for Sustainable Energy Technologies", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE2025/EE3501E/TEE3501 Power Electronics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2029 (for AY2019 intake & after); EE3506C (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4505", + "title": "Power Semiconductor Devices & ICs", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE and CEG students of stage 3 and above (for AY2017 intake & after) ; EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4506", + "title": "Magnetic Recording Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2011", + "corequisite": "" + }, + { + "moduleCode": "EE4509", + "title": "Silicon Micro Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Stage 3 Engineering students from FoE (for AY2017 intake & after) ; EE2021 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4510", + "title": "Solar Photovoltaic Energy Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2025", + "corequisite": "" + }, + { + "moduleCode": "EE4511", + "title": "Renewable Generation and Smart Grid", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2029 (for AY2019 intake & after); EE3506C (for AY2018 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4512", + "title": "Renewable Energy Systems Capstone Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2025", + "corequisite": "" + }, + { + "moduleCode": "EE4601", + "title": "Sensors For Biomedical Applications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3431C", + "corequisite": "" + }, + { + "moduleCode": "EE4602", + "title": "Bioelectronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2004", + "corequisite": "" + }, + { + "moduleCode": "EE4603", + "title": "Biomedical Imaging Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023/BN2401", + "corequisite": "" + }, + { + "moduleCode": "EE4604", + "title": "Biological Perception in Digital Media", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3731C or EE4704 (for AY2017 intake & after) ;\nEE3731C or EE3206 (for AY2016 intake & prior)", + "corequisite": "" + }, + { + "moduleCode": "EE4605", + "title": "Bio-Instrumentation & Signal Analysis", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3731C", + "corequisite": "" + }, + { + "moduleCode": "EE4701", + "title": "Video Processing", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE3206", + "corequisite": "" + }, + { + "moduleCode": "EE4702", + "title": "Game World Mechanics", + "moduleCredit": 8, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010FC/CS1101C/CS1010E/CG1101 and EE3702", + "corequisite": "" + }, + { + "moduleCode": "EE4703", + "title": "Digital Media Technologies", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE3701", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IT1007 or CS1010 equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE4704", + "title": "Image Processing and Analysis", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "CS4243, EE3206, EE3206E, TEE3206, TEE4704.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2023/CG2023", + "corequisite": "" + }, + { + "moduleCode": "EE4704E", + "title": "Introduction to Computer Vision and Image Processing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CS4243, TEE3206, EE3206E, TEE4704", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2009E or EE2023E", + "corequisite": "" + }, + { + "moduleCode": "EE4705", + "title": "Human-Robot Interaction", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE4802", + "title": "Learning from Data", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4211, CS3244, IT3011", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1010/E/% and [ EE2012A or ST2334 or {ST2131/MA2216 and ST2132} ]\nAnti: EE4211, CS3244, IT3011\n\nPre-req Advisory:\n1. Minor in Data Engineering students should take EE3801 before EE4802\n2. Familiarity with scientific programming language such as Python. All assignments in class will be done in Python.", + "corequisite": "" + }, + { + "moduleCode": "EE5001", + "title": "Independent Study Module I", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE5003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5002", + "title": "Independent Study Module Ii", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE5003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5003", + "title": "Electrical Engineering Project", + "moduleCredit": 8, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE5001", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5020", + "title": "Data Science for Internet of Things", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Familiarity with scientific programming language such as Matlab or Python will be useful. Class assignments will be in Python.", + "corequisite": "" + }, + { + "moduleCode": "EE5021", + "title": "Cloud based Services for Internet of Things", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Basic knowledge of networking, programming and computing", + "corequisite": "" + }, + { + "moduleCode": "EE5022", + "title": "Cyber Security for Internet of Things", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5023", + "title": "Wireless Networks", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5132", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5024", + "title": "IoT Sensor Networks", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5132", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5025", + "title": "Intellectual Property: Innovations in IoT", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5026", + "title": "Machine Learning for Data Analytics", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5907", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Basic programming knowledge", + "corequisite": "" + }, + { + "moduleCode": "EE5027", + "title": "Statistical Pattern Recognition", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5907", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "This course assumes students have taken an undergraduate probability/statistics course, an undergraduate programming course and have at least a basic linear algebra background, all of which should be covered in a typical electrical engineering or computer science undergraduate program.", + "corequisite": "" + }, + { + "moduleCode": "EE5028", + "title": "Security for Industrial Control Systems", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5040", + "title": "Power Flow Modelling and Optimization", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5041", + "title": "Grid Stability and Security", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5042", + "title": "Building blocks of Smart grids", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5043", + "title": "Demand Side Management", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5044", + "title": "Energy Management for Buildings", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5045", + "title": "Industrial Energy Efficiency", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5046", + "title": "Renewable energy sources", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5047", + "title": "Renewable Energy Integration and Grid Codes", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5060", + "title": "Sensors and Instrumentation for Automation", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in feedback control systems or relevant experience", + "corequisite": "" + }, + { + "moduleCode": "EE5061", + "title": "Industrial Control and Programming", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5111, EE6111", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in feedback control systems or relevant experience", + "corequisite": "" + }, + { + "moduleCode": "EE5062", + "title": "Autonomous Systems", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5110,EE6110", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in feedback control systems or relevant experience.", + "corequisite": "" + }, + { + "moduleCode": "EE5063", + "title": "Modelling of Mechatronic Systems", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5109", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in feedback control systems or relevant experience.", + "corequisite": "" + }, + { + "moduleCode": "EE5064", + "title": "Dynamics and Control of Robot Manipulators", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME5402/EE5106 : Advanced Robotics", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Preferred with some background on Linear Algebra, Calculus, Classical and Modern Control Theory, and computational skills using matlab, python, C, or C++", + "corequisite": "" + }, + { + "moduleCode": "EE5065", + "title": "Tenets of AI in Robotics", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Background in control and automation systems, or relevant experience", + "corequisite": "" + }, + { + "moduleCode": "EE5080", + "title": "State-Of-The-Art Semiconductor Technology", + "moduleCredit": 2, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Background in semiconductor device physics and process technology", + "corequisite": "" + }, + { + "moduleCode": "EE5101", + "title": "Linear Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MCH5201, ME5401, EE5101R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[Applicable to UG level students only] ME2142 or EE3331C; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE4302 or ME4246.", + "corequisite": "" + }, + { + "moduleCode": "EE5102", + "title": "Multivariable Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE6102 Multivariable Control Systems (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3331C or EE5101; or\n\n[applicable to GD level students only] EE5101, EE5101R or ME5401.", + "corequisite": "" + }, + { + "moduleCode": "EE5103", + "title": "Computer Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME5403, EE5103R, MCH5103/TD5241", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[Applicable to UG level students only] EE2023 or EE3331C or ME2142; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE2010, EE2023, EE3331C, ME2142 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5104", + "title": "Adaptive Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE6104 Adaptive Control Systems (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] Requires EE3331C or EE5101/ME5401; or\n\n[applicable to GD level students only] Requires EE5101/EE5101R/ME4501 Linear Systems as a pre-requisite or co-requisite; or background knowledge in linear system or with permission by lecturer.", + "corequisite": "Requires EE5101/EE5101R/ME4501 Linear Systems as a pre-requisite or co-requisite; or background knowledge in linear system or with permission by lecturer" + }, + { + "moduleCode": "EE5106", + "title": "Advanced Robotics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MCH5209, ME5402, EE5106R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Background knowledge in linear algebra & feedback control are required", + "corequisite": "" + }, + { + "moduleCode": "EE5107", + "title": "Optimal Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5105 Optimal Control Systems\nEE6107 Optimal Control Systems (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3331C or EE5101; or\n\n[applicable to GD level students only] EE5101 / EE5101R / ME5401.", + "corequisite": "" + }, + { + "moduleCode": "EE5108", + "title": "Instrumentation and Sensors", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MCH5206", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE5109", + "title": "Modelling and Applications of Mechatronic Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MCH5002 Applications of Mechatronics, EE5063 Modeling of Mechatronic Systems or EE4307 Control Systems Design And Simulation", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3331C", + "corequisite": "" + }, + { + "moduleCode": "EE5110", + "title": "Special Topics in Automation and Control", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE6110, EE5062", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "EE5101 / EE5101R Linear Systems (cross-listedwith ME5401) OR EE5103 / EE5103R Computer Control Systems (cross-listed with ME5403) OR EE4302 Advanced Control Systems" + }, + { + "moduleCode": "EE5111", + "title": "Selected Topics in Industrial Control & Instrumentation", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5060 Smart Sensor and Instrumentation for Automation \nEE5061 Industrial Control and IEC Programming", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3331C; or\n\n[Advisory applicable to GD level students only]: Background in feedback control systems or relevant experience", + "corequisite": "" + }, + { + "moduleCode": "EE5131", + "title": "Wireless Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE6131 Wireless Communications (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5132", + "title": "Wireless and Sensor Networks", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5406, EE5913, EE5023 or EE5024", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "[applicable to UG level students only] EE4204 or EE4210; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE4204 Computer Networks and EE4210 Network Protocols and Applications, or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5133", + "title": "Statistical Signal Processing Techniques", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE4131 Random Signals, or\nEE5306 Random Signal Analysis, or\nEE5137R Stochastic Processes", + "corequisite": "" + }, + { + "moduleCode": "EE5134", + "title": "Optical Communications and Networks", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5912 and EE6134", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[Advisory] Requires knowledge on computer networks and communications.", + "corequisite": "" + }, + { + "moduleCode": "EE5135", + "title": "Digital Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE6135", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] (EE2012 or EE2012A or ST2334) and (EE2023 or CS2023); or\n\n[Advisory applicable to GD level students only] Requires undergraduate-level familiarity with probability and random processes, signals and systems, and linear algebra. Successful completion of EE5137 is preferred though not necessary.", + "corequisite": "" + }, + { + "moduleCode": "EE5137", + "title": "Stochastic Processes", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5306, EE5137R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE2012 or EE2012A or ST2334; or\n\n[Advisory applicable to GD level students only] Requires knowledge of probability and statistics at the level of NUS-ECE undergraduate module EE2012 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5138", + "title": "Optimization for Electrical Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5138R or EE6138 Optimization for Electrical Engineering (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Mathematical background of an undergraduate course in ECE", + "corequisite": "" + }, + { + "moduleCode": "EE5139", + "title": "Information Theory for Communication Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5139R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE2012 or EE2012A or ST2334 or EE4131; or\n\n[Advisory pre-req applicable to GD level students only] Requires knowledge of probability and statistics at the level of the undergraduate module such as EE2012 or EE4131", + "corequisite": "" + }, + { + "moduleCode": "EE5201", + "title": "Control in Data Storage Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5206 Recording Electronics \nEE6201 Magnetic Recording Technology (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5101 / EE5101R / ME5401 Linear Systems\nOR\nEE5103 / EE5103R / ME5403 Computer Control Systems", + "corequisite": "" + }, + { + "moduleCode": "EE5303", + "title": "Microwave Electronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5303R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4101 or EE4104 or EE4112; or\n\n[Advisory pre-req applicable to GD level students only] Requires background knowledge such as EE4101, EE4104 or EE4112 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5308", + "title": "Antenna Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5308R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4112; or\n\n[Advisory applicable to GD level students only]: Requires undergraduate 2nd year background knowledge on EM Waves & Fields; and Engineering Maths", + "corequisite": "" + }, + { + "moduleCode": "EE5310", + "title": "Communication Networking Fundamentals", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE6310 Communication Networking Fundamentals (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE2012 or EE2012A or ST2334 or EE3204 or EE4204 or EE4210; or\n\n[Advisory pre-req applicable to GD level students only] Requires basic probability at the level of EE2012/EE2012A/ST234 and basic networking concepts at the level of EE3204/EE4204 and EE4210", + "corequisite": "" + }, + { + "moduleCode": "EE5401", + "title": "Cellular Mobile Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TD5113A", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4102 OR EE5135; or\n\n[Advisory applicable to GD level students only]: Requires background of digital communications, either EE5 & EE4 series or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5402", + "title": "Rf Circuit Design I", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TD5115", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5404", + "title": "Satellite Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TD5116", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5431", + "title": "Fundamentals of Nanoelectronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5431R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] PC2232 OR EE3431C; or\n\n[Advisory applicable to GD level students only]: Requires background knowledge such as PC2232, EE3431C or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5434", + "title": "Microelectronic Processes and Integration", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EE5515, EE5516, EE5432R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "[applicable to UG level students only] EE3431C or equivalent; or\n\n[Advisory applicable to GD level students only] Requires background such as EE3431C or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5439", + "title": "Micro/Nano Electromechanical Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE6439 Micro/Nano Electromechanical Systems (M/NEMS) (Advanced)\nEE5520 Micro/Nanoelectromechanical Systems (M/NEMS)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4411 OR EE4436 or CN4217 Processing of Microelectronic Materials or equivalent; or\n\n[Advisory applicable to GD level students only] Requires background such as EE4411 or CN4217 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5440", + "title": "Magnetic Data Storage for Big Data", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4433 Nanometer Scale Information Storage, or EE5202 Nanometer Scale Information Storage", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Requires knowledge of magnetostatics, magnetic materials and solid state physics, such as PC3231, PC3235, PC4240, MLE3105", + "corequisite": "" + }, + { + "moduleCode": "EE5502", + "title": "Mos Devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3431C; or\n\n[Advisory applicable to GD level students only] Requires undergrad level background (such as EE2004/EE3431C) or equivalent on semiconductor physics and MOS devices", + "corequisite": "" + }, + { + "moduleCode": "EE5507", + "title": "Analog Integrated Circuits Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5507R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3408C; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE3408/EE3408C or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5508", + "title": "Semiconductor Fundamentals", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3431C; or\n\n[Advisory applicable to GD level students only] Requires undergrad Physics & Maths and Electronic material background (such as EE2004, EE3406, EE3431C) or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5514", + "title": "Ic Yield, Reliability & Failure Analysis", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5503", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5517", + "title": "Optical Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE3431C; or\n\n[Advisory applicable to GD level students only] Requires background such as EE3431C or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5518", + "title": "Vlsi Digital Circuit Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5518R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4415; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE2020/EE2026, EE4415 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5701", + "title": "High Voltage Testing and Switchgear", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[Advisory] Requires good background of power systems, physics and mathematics.", + "corequisite": "" + }, + { + "moduleCode": "EE5702", + "title": "Advanced Power System Analysis", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5702R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4501; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE4501 Power System Mgt & Protection; or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5703", + "title": "Industrial Drives", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5703R, MCH5203", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "[applicable to UG level students only] EE4502; or\n\n[Advisory applicable to GD level students only] Requires undergraduate knowledge in Electric Drives, example EE4502 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5704", + "title": "High-Frequency Power Converters", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE6704", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5711, EE5711R or EE4503", + "corequisite": "" + }, + { + "moduleCode": "EE5711", + "title": "Power Electronic Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5711R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4503; or\n\n[Advisory applicable to GD level students only] Requires undergraduate knowledge in power electronics, example EE3501C, EE4503 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5731", + "title": "Visual Computing", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE6904, EE5731R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4212 and EE4704. Advisory: require skill in Matlab programming; or\n\n[Advisory applicable to GD level students only] Requires knowledge in Math (Linear Algebra, Calculus, Statistic/Probabilistic) and skill in Matlab programming.", + "corequisite": "" + }, + { + "moduleCode": "EE5801", + "title": "Electromagnetic Compatibility", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4101 and EE4112; or\n\n[Advisory applicable to GD level students only] Requires background knowledge such as EE2023, EE2011, PC2020, EE4101, EE4112 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE5831", + "title": "Electromagnetic Wave Theory", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5831R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5902", + "title": "Multiprocessor Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5902R, TD5180A, CS5222 Advanced Computer Archtecture; CS5223 Distributed Systems; CS4223 Multi-core Architectures.", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE4204 or EE3207 or EE4218 or CS5272 or CG3207.Advisory: Requires knowledge of single CPU organization (CS2100 Computer Organization) and Architecture (CG3207 Computer Architecture), code reading, basics of single CPU workings and operating systems. For simulation in CA, you must be able to do programming using one of the languages - C/C++/Python/Java. In case of hardware project, coding experience with VHDL/Verilog using FPGA is expected. Must be comfortable to read the prescribed/chosen research papers independently towards fulfiling your 40% CA requirements.\n\nOr\n\n[Advisory applicable to GD level students only] Requires knowledge of single CPU organization (CS2100 Computer Organization) and Architecture (CG3207 Computer Architecture), code reading, basics of single CPU workings and operating systems. For simulation in CA, you must be able to do programming using one of the languages - C/C++/Python/Java. In case of hardware project, coding experience with VHDL/Verilog using FPGA is expected. Must be comfortable to read the prescribed/chosen research papers independently towards fulfiling your 40% CA requirements. Pre-or co-requisite related modules such as EE4218 Embedded Hardware System Design; CS5272 Embedded Software Design or CG3207 Computer Architecture.", + "corequisite": "" + }, + { + "moduleCode": "EE5903", + "title": "Real-Time Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4214, EE4214E, MCH5205, TD5103, CS5270 Verification of Real Time Systems, CS5250 Advanced Operating Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "[applicable to UG level students only] EE4218 or CS5272 or CG2271 or CS2106. Advisory: Requires knowledge of algorithms, code reading, basics of single CPU workings and operating systems and must be able to do programming using one of the languages - C/C++/Python/Java in your implementation based 30% CA assignment. In case of hardware project, coding experience with VHDL/Verilog using FPGA is expected. Must be comfortable to read the prescribed research papers independently towards fulfiling your 50% CA requirements. Knowledge from CG2271 Real Time Operating Systems is an added asset. Pre- or co-requisite of relevant modules such as EE4218 Embedded Hardware System Design or CS5272 Embedded Software Design.\n\nOr\n\n[Advisory applicable to GD level students only] Requires knowledge of algorithms, code reading, basics of single CPU workings and operating systems and must be able to do programming using one of the languages - C/C++/Python/Java in your implementation based 30% CA assignment. In case of hardware project, coding experience with VHDL/Verilog using FPGA is expected. Must be comfortable to read the prescribed research papers independently towards fulfiling your 50% CA requirements. Knowledge from CG2271 Real Time Operating Systems is an added asset. Pre- or co-requisite of relevant modules such as EE4218 Embedded Hardware System Design or CS5272 Embedded Software Design.", + "corequisite": "" + }, + { + "moduleCode": "EE5904", + "title": "Neural Networks", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME5404, EE5904R, MCH5202", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE5907", + "title": "Pattern Recognition", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5907R, EE5026 or EE5027", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to UG level students only] EE2012 or EE2012A or ST2334 or EE3731C or CS1101S; or\n\n[Advisory applicable to GD level students only] Requires background knowledge in probability/statistics, programming (python/matlab) and linear algebra that are typically covered in an undergraduate engg program", + "corequisite": "" + }, + { + "moduleCode": "EE5934", + "title": "Deep Learning", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE6934 Deep Learning (Advanced)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[applicable to both GD and UG level students] EE5907. Requires good proficiency in a scientific programming language, such as python (e.g. CS1010; IT1007 or equivalent). Class assignments will be in Python", + "corequisite": "" + }, + { + "moduleCode": "EE5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE6004", + "title": "Selected Advanced Topics In EM Modelling", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5302, EE5308R, EE5308. Advisory: Requires good background of mathematics.", + "corequisite": "" + }, + { + "moduleCode": "EE6102", + "title": "Multivariable Control Systems (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5102 Multivariable Control Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5101 / EE5101R / ME5401 Linear Systems", + "corequisite": "" + }, + { + "moduleCode": "EE6104", + "title": "Adaptive Control Systems (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5104 Adaptive Control Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Requires EE5101/EE5101R/ME4501 Linear Systems as a pre-requisite or co-requisite; or background knowledge in linear system or with permission by lecturer", + "corequisite": "Requires EE5101/EE5101R/ME4501 Linear Systems as a pre-requisite or co-requisite; or background knowledge in linear system or with permission by lecturer" + }, + { + "moduleCode": "EE6105", + "title": "Non-Linear Dynamics and Control", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5101 / EE5101R / ME5401 Linear Systems\nOR\nEE5103 / EE5103R / ME5403 Computer Control Systems", + "corequisite": "" + }, + { + "moduleCode": "EE6107", + "title": "Optimal Control Systems (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5107 Optimal Control Systems,\nEE5105 Optimal Control Systems (old code for EE5107)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5101 / EE5101R Linear Systems (Cross-listed ME5401)", + "corequisite": "" + }, + { + "moduleCode": "EE6110", + "title": "Special Topics in Automation and Control (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5110 Special Topics in Automation and Control", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "EE5101 / EE5101R Linear Systems (cross-listed with ME5401) OR EE5103 / EE5103R Computer Control Systems (crosslisted with ME5403)" + }, + { + "moduleCode": "EE6130", + "title": "Classical & Modern Channel Coding", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5307", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5139/EE5139R", + "corequisite": "" + }, + { + "moduleCode": "EE6131", + "title": "Wireless Communications (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5131", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE6134", + "title": "Optical Networks (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5134, EE5912", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Knowledge in computer networks fundamentals and optimization", + "corequisite": "" + }, + { + "moduleCode": "EE6135", + "title": "Digital Communications (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5135", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Requires undergraduate-level familiarity with probability and random processes, signals and systems, and linear algebra. Successful completion of EE5137 is preferred but not necessary.", + "corequisite": "" + }, + { + "moduleCode": "EE6136", + "title": "Advanced Optical Communications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5137/EE5137R or EE5306", + "corequisite": "" + }, + { + "moduleCode": "EE6138", + "title": "Optimization for Electrical Engineering (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5138 Optimization for Electrical Engineering\nOr EE5138R Optimization for Communication Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EE6201", + "title": "Control in Data Storage Systems (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5201 Magnetic Recording Technology\nEE5206 Recording Electronics", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5101 / EE5101R Linear Systems (cross-listed ME5401)\nOR\nEE5103 / EE5103R Computer Control Systems (crosslisted\nME5403)", + "corequisite": "" + }, + { + "moduleCode": "EE6230", + "title": "Advanced Biomedical Circuits and Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5507/EE5507R Analog Integrated Circuits Design\nAND\nEE5518/EE5518R VLSI Digital Circuit Design", + "corequisite": "" + }, + { + "moduleCode": "EE6231", + "title": "Reconfigurable Computing", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE4218 Embedded Hardware System Design or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE6310", + "title": "Communication Networking Fundamentals (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5310 Communication Networking Fundamentals", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Basic probability at the level of EE2012 and basic networking concepts at the level of EE3204 and EE4210", + "corequisite": "" + }, + { + "moduleCode": "EE6435", + "title": "Advanced Concepts in Nanoelectronics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5209 and EE5521", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5431 or EE5431R", + "corequisite": "" + }, + { + "moduleCode": "EE6436", + "title": "Advanced Characterization of Materials and Devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE6503", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5434 or EE5432R", + "corequisite": "" + }, + { + "moduleCode": "EE6437", + "title": "Advanced Semiconductor Devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE6505", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5502 or EE5433R", + "corequisite": "" + }, + { + "moduleCode": "EE6438", + "title": "Magnetic materials and devices", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5431/EE5431R or EE5433R", + "corequisite": "" + }, + { + "moduleCode": "EE6439", + "title": "Micro/Nano Electromechanical Systems (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5439 Micro/Nano Electromechanical Systems (M/NEMS)\nEE5520 Micro/Nanoelectromechanical Systems (M/NEMS)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE4411 Silicon Processing Technology or CN4217 Processing of Microelectronic Materials or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "EE6440", + "title": "Advanced Topics in Photonics", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5519", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Students should have some basic knowledge of electromagnetics and optics.", + "corequisite": "" + }, + { + "moduleCode": "EE6506", + "title": "Advanced Integrated Circuit Design", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5507/EE5507R, EE5518/EE5518R", + "corequisite": "" + }, + { + "moduleCode": "EE6531", + "title": "Selected Topics in Smart Grid Technologies", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5711 / EE5711R Modelling and Control of Power Electronic Converters, OR EE5702 / EE5702R Advanced Power System Analysis.", + "corequisite": "" + }, + { + "moduleCode": "EE6532", + "title": "Power System Reliability", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5712 Power System Reliability", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5702 / EE5702R Advanced Power Systems Analysis", + "corequisite": "" + }, + { + "moduleCode": "EE6701", + "title": "Evolutionary Computation", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5101 / EE5101R / ME5401 Linear Systems\nOR\nEE5103 / EE5103R / ME5403 Computer Control Systems", + "corequisite": "" + }, + { + "moduleCode": "EE6703", + "title": "Modelling and Control of Electrical Actuators", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5703/EE5703R and EE5711/EE5711R", + "corequisite": "" + }, + { + "moduleCode": "EE6704", + "title": "High-Frequency Power Converters (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5704", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5711/EE5711R", + "corequisite": "" + }, + { + "moduleCode": "EE6733", + "title": "Advanced Topics on Vision and Machine Learning", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5907/EE5907R and EE5731/EE5731R", + "corequisite": "" + }, + { + "moduleCode": "EE6735", + "title": "Algorithms for Statistical Inference", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE4131 or EE5137/EE5137R", + "corequisite": "" + }, + { + "moduleCode": "EE6831", + "title": "Advanced Electromagnetic Theory and Applications", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5831 or EE5831R", + "corequisite": "" + }, + { + "moduleCode": "EE6832", + "title": "Selected Topics in EM Metamaterial and Multiple-Antenna", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5308 or EE5308R", + "corequisite": "" + }, + { + "moduleCode": "EE6833", + "title": "Selected Topics in Microwave and Antenna Engineering", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5303/EE5303R Microwave Electronics or\nEE5308/EE5308R Antenna Engineering", + "corequisite": "" + }, + { + "moduleCode": "EE6901", + "title": "3d Vision", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EE5908, TD5130", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE4212, EE5731/EE5731R or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EE6903", + "title": "Advanced Models of Biological Perception", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "(EE4604/equivalent) AND (EE5907/EE5907R or EE5731/EE5731R)", + "corequisite": "" + }, + { + "moduleCode": "EE6934", + "title": "Deep Learning (Advanced)", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5934 Deep Learning", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "EE5907 Pattern Recognition. Requires good proficiency in a scientific programming language, such as Python (e.g. CS1010 Programming Methodology; IT1007 Introduction to Programming with Python & C or equivalent). All class assignments will be in Python.", + "corequisite": "" + }, + { + "moduleCode": "EE6990", + "title": "Research Attachment", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ECE PhD student", + "corequisite": "" + }, + { + "moduleCode": "EE6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG1109", + "title": "Statics And Mechanics Of Materials", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1109FC, CE1109X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'A Level Math / H2 Math or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EG1109M", + "title": "Statics and Mechanics of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG1109FC, CE1109, CE1109X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Math / H2 Math or equivalent", + "corequisite": "" + }, + { + "moduleCode": "EG1111", + "title": "Engineering Principles and Practice I", + "moduleCredit": 6, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG1112", + "title": "Engineering Principles and Practice II", + "moduleCredit": 6, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG1310", + "title": "Exploratory Satellite Design", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG1311", + "title": "Design and Make", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG1603", + "title": "InnoVenture - Leadership & Innovation Challenge", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG1611", + "title": "Engineering Co-Op Immersion Programme I", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2101", + "title": "Pathways to Engineering Leadership", + "moduleCredit": 2, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "This module is open only to students enrolled in the Engineering Scholars Programme.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2201A", + "title": "Introduction to Design Thinking", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2201B", + "title": "Practising Design Thinking", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2202", + "title": "From Design Thinking to Engineering Design", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG2201B (Design Thinking in Grand Engineering\nChallenges – Part 2)", + "corequisite": "" + }, + { + "moduleCode": "EG2301", + "title": "Case Studies in Innovation", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2302", + "title": "Engineering Design in Topical Engineering Challenges", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2310", + "title": "Fundamentals of Systems Design", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EG1310 Exploratory Satellite Design", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2311", + "title": "Introduction to Space Systems", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Physics", + "corequisite": "" + }, + { + "moduleCode": "EG2312", + "title": "Radar Theory and Techniques", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2401A", + "title": "Engineering Professionalism", + "moduleCredit": 2, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EG2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ES1501A, ES1501B, ES1501C, EG1413/ES1531 and\nYear 2 status", + "corequisite": "" + }, + { + "moduleCode": "EG2603", + "title": "TIP - Product & Business Plan Development", + "moduleCredit": 2, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2603B", + "title": "TIP : Business Incubation", + "moduleCredit": 8, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2604", + "title": "Innovation Programme", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This is an introductory module for students of all backgrounds.", + "corequisite": "" + }, + { + "moduleCode": "EG2605", + "title": "Undergraduate Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2606A", + "title": "Independent Work", + "moduleCredit": 2, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2606B", + "title": "Independent Work", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2610", + "title": "Engineering Work Experience Internship", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "Full-time undergraduate students who have accumulated more than 10MCs for previous internship stints.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to full-time undergraduate students who have completed at least 40MCs and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation period.", + "corequisite": "" + }, + { + "moduleCode": "EG2620", + "title": "Engineering Co-Op Immersion Programme II", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1611 Engineering Co-Op Immersion Programme I", + "corequisite": "" + }, + { + "moduleCode": "EG2701A", + "title": "Aspirational Project I", + "moduleCredit": 8, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG2701B", + "title": "Aspirational Project II", + "moduleCredit": 8, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG3301R", + "title": "DCP Project", + "moduleCredit": 12, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "ESP3902: Major Design Project 1 (4 MC)\nESP3903: Major Design Project 2 (4 MC)\nBN2203: Introduction to Bioengineering Design (4 MC)\nBN3101: Biomedical Engineering Design (6 MC)\nCG3002: Embedded Systems Design Project (6 MC)\nEE3001: Project (4 MC)\nEE3031: Innovation & Enterprise I (4 MC)\nEE3032: Innovation & Enterprise II (6 MC)\nIE3100M: Systems Design Project (12 MC)\nME3101: Mechanical Systems Design I (4 MC)\nME3102: Mechanical Systems Design II (4 MC)\nESE4501: Design Project (4 MC)\nMLE3103: Materials Design and Selection (4 MC)\nMLE4102: Design Project (4 MC)\nEG3301: DCC Project (10MC)", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Stage 2 standing.", + "corequisite": "" + }, + { + "moduleCode": "EG3601", + "title": "Industrial Attachment Programme", + "moduleCredit": 12, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG3602", + "title": "Vacation Internship Programme", + "moduleCredit": 6, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG3611", + "title": "Industrial Attachment", + "moduleCredit": 12, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EG3601 Industrial Attachment Programme\nEG3602 Vacation Internship Programme\nEG3612 Vacation Internship Programme", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should be of or are expected to be at least Stage 3 in standing.\nStudent should complete CFG career coaching modules (to be finalized) prior to start of internship.", + "corequisite": "" + }, + { + "moduleCode": "EG3611A", + "title": "Industrial Attachment", + "moduleCredit": 10, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EG3601 Industrial Attachment Programme \nEG3611 Industrial Attachment\nEG3602 Vacation Internship Programme\nEG3612 Vacation Internship Programme", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should be of or are expected to be at least Year 3 in standing.\nStudent should complete CFG career coaching modules (to be finalized) prior to start of internship", + "corequisite": "EG2401 or EG2401A should be read either before or during the semester on internship." + }, + { + "moduleCode": "EG3611B", + "title": "Industrial Attachment", + "moduleCredit": 2, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG3601 Industrial Attachment Programme \nEG3611 Industrial Attachment\nEG3602 Vacation Internship Programme\nEG3612 Vacation Internship Programme", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should be of or are expected to be at least Year 3 in standing.\nStudent should complete CFG career coaching modules (to be finalized) prior to start of internship.", + "corequisite": "EG2401 should be read either before or during the semester on internship." + }, + { + "moduleCode": "EG3612", + "title": "Vacation Internship Programme", + "moduleCredit": 6, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "EG3601 Industrial Attachment Programme\nEG3602 Vacation Internship Programme\nEG3611 Industrial Attachment\nEG3611A Industrial Attachment", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have completed at least Stage 2 of studies.\nStudent should have completed CFG career coaching modules (to be finalized) prior to start of internship.", + "corequisite": "EG2401 or EG2401A should be read either before or during the semester on internship." + }, + { + "moduleCode": "EG4211", + "title": "Energy Storage Systems for Electric Grids", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG4301", + "title": "DCP Dissertation", + "moduleCredit": 12, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "ESP4901: Research Project (12 MC)\nBN4101R: B.Eng. Dissertation (12 MC)\nCN4118R: B.Eng. Dissertation (10 MC)\nCG4001: B.Eng. Dissertation (12 MC)\nEE4001: B.Eng. Dissertation (12 MC)\nIE4100: B.Eng. Dissertation (12 MC)\nME4101: B.Eng. Dissertation (12 MC)\nCE4104: B.Eng. Dissertation (8 MC)\nESE4502: B.Eng. Dissertation (12 MC)\nMLE4101: B.Eng. Dissertation (12 MC)\nBN4101 B.Eng. Dissertation (8 MCs)\nCG4003 B.Eng. Dissertation (12 MCs)\nCN4118 B.Eng. Dissertation (8 MCs)\nEE4002R Research Capstone (8 MCs)\nESE4502R B.Eng. Dissertation (8 MCs)\nIE4100R B.Eng. Dissertation (8 MCs)\nME4101A B.Eng. Dissertation (8 MCs)\nMLE4101A B.Eng. Dissertation (6 MCs)", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Year 4", + "corequisite": "" + }, + { + "moduleCode": "EG4301A", + "title": "Ideas to Start-up", + "moduleCredit": 12, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "EG4301 DCP B.Eng. Dissertation (12 MC)\nBN4101 B.Eng. Dissertation (8 MCs)\nBN4101R B.Eng. Dissertation (12 MCs)\nCE4104 B.Eng. Dissertation (8 MCs)\nCG4001 B.Eng. Dissertation (12 MCs)\nCG4003 B.Eng. Dissertation (12 MCs)\nCN4118 B.Eng. Dissertation (8 MCs)\nCN4118R B.Eng. Dissertation (10 MCs)\nEE4001 B.Eng. Dissertation (12 MCs)\nEE4002R Research Capstone (8 MCs)\nESP4901 Research Project (12 MCs)\nESE4502 B.Eng. Dissertation (12 MCs)\nESE4502R B.Eng. Dissertation (8 MCs)\nIE4100 B.Eng. Dissertation (12 MCs)\nIE4100R B.Eng. Dissertation (8 MCs)\nME4101 B.Eng. Dissertation (12 MCs)\nME4101A B.Eng. Dissertation (8 MCs)\nMLE4101 B.Eng. Dissertation (12 MCs)\nMLE4101A B.Eng. Dissertation (6 MCs)", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "EG3301R DCP Project or Year 4 students who already\nhave project/product ideas", + "corequisite": "" + }, + { + "moduleCode": "EG5911", + "title": "Research Methodology & Ethics", + "moduleCredit": 0, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EG5911R", + "title": "Information Literacy Skills for Research", + "moduleCredit": 0, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EL1101E", + "title": "The Nature of Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1011", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Exempted from NUS Qualifying English Test, or passed NUS Qualifying English Test, or exempted from further CELC Remedial English modules.", + "corequisite": "" + }, + { + "moduleCode": "EL2101", + "title": "Structure of Sentences and Meanings", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EL2201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL2102", + "title": "Sound Patterns in Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EL2202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL2111", + "title": "Historical Variation in English", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EL2211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL2151", + "title": "Social Variation in English", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EL2251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3201", + "title": "Syntax", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL2101 or EL2201", + "corequisite": "" + }, + { + "moduleCode": "EL3202", + "title": "Phonetics and Phonology", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL2102 or EL2202", + "corequisite": "" + }, + { + "moduleCode": "EL3203", + "title": "Semantics and Pragmatics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3204", + "title": "Discourse Structure", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3205", + "title": "Morphology", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EL1101E or GEK1011, and (ii) EL2101 or EL2201, and (iii) EL2102 or EL2202", + "corequisite": "" + }, + { + "moduleCode": "EL3206", + "title": "Psycholinguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3207", + "title": "Introduction to the Neurocognition of Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3208", + "title": "Bilingualism", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3209", + "title": "Language, Culture, and Mind", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011. Exposure to some linguistics is helpful but not essential.", + "corequisite": "" + }, + { + "moduleCode": "EL3210", + "title": "Topics in the Psychology of Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3211", + "title": "Language in Contact", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3213", + "title": "Language Typology", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL2101 or EL2201", + "corequisite": "" + }, + { + "moduleCode": "EL3214", + "title": "Language Documentation", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3216", + "title": "Language and the Internet", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3221", + "title": "Literary Stylistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed one Level‐1000 or 2000 module in EL, or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3222", + "title": "Cinematic Discourse and Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EL3880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3230", + "title": "Phonology", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL3202 Phonetics and Phonology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E The Nature of Language and EL2102 Sound Patterns in Language", + "corequisite": "" + }, + { + "moduleCode": "EL3231", + "title": "Phonetics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL3202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL2202 or EL2102 The Sound System of English", + "corequisite": "" + }, + { + "moduleCode": "EL3251", + "title": "Language, Society and Identity", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL2151 or EL2251", + "corequisite": "" + }, + { + "moduleCode": "EL3252", + "title": "Language Planning and Policy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3253", + "title": "Critical Discourse Analysis", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3254", + "title": "Media, Discourse and Society", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3255", + "title": "English in Southeast Asia", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3256", + "title": "Language and the Workplace", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3258", + "title": "The Sociolinguistics of Humour: Jokes and Comedies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011, and EL2251 or EL2151", + "corequisite": "" + }, + { + "moduleCode": "EL3259", + "title": "Language as Interaction", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL2151", + "corequisite": "" + }, + { + "moduleCode": "EL3261", + "title": "Foundations in Applied Linguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL3880F", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011. Students should have a strong interest in reading about second language learning and teaching.", + "corequisite": "" + }, + { + "moduleCode": "EL3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "EL3880", + "title": "Topics in English Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3880C", + "title": "Grammaticalisation", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3880D", + "title": "The Lexicon of English", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL3880F", + "title": "Foundations in Applied Linguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or GEK1011", + "corequisite": "" + }, + { + "moduleCode": "EL4201", + "title": "Advanced Syntax", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, and EL3201, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4203", + "title": "Semantics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in EL and EL3201,\nwith a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including (i) 28 MCs in EL or 28 MCs\nin PH, and (ii) EL3201, with a minimum CAP of 3.20 or be\non the honours track. PH students who believe they have\nsufficient background knowledge for the module should\nconsult the lecturer for permission to take it.", + "corequisite": "" + }, + { + "moduleCode": "EL4204", + "title": "Pragmatics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "EL4206", + "title": "Language Acquisition & Language Development", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL5420", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "EL4211", + "title": "Grammar Writing", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4212", + "title": "Field Methods in Linguistics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL3212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4216", + "title": "Lexicology and Lexicography", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "EL4221", + "title": "Narrative Structures", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including (i) EL1101E and (ii) 28 MCs in EL or 28 MCs\nin EN or 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4222", + "title": "Stylistics and Drama", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "TS4213", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EL or 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4251", + "title": "Social Thought in Language", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, and EL2251 or EL2151, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4252", + "title": "Interactional Discourse", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "EL4253", + "title": "Language, Gender, and Text", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL or 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4254", + "title": "Language, Ideology and Power", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in EL or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4255", + "title": "English as a World Language", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in EL or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4256", + "title": "Multilingualism", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, and one of the following: EL2251 or EL2151 or EL3251 or EL3252, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4257", + "title": "English in the Public Sphere: the Politics of Language", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4258", + "title": "Metapragmatics and Language Ideology", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, and EL2151, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EL4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 and before:\nCompleted 110 MCs, including 60 MCs of EL major requirements with a minimum CAP of 3.50.\n\nCohort 2013-2015:\nCompleted 110 MCs including 60 MCs of EL major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of EL major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "EL4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EL4401 or XFA4404", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015: Completed 100 MCs, including 60 MCs in EL, with a minimum CAP of 3.20. Cohort 2016 onwards: Completed 100 MCs, including 44 MCs in EL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "EL4880", + "title": "Topics in English Language", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4880B", + "title": "Exploring Second Language Writing", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL5880B, EL5880BR", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4880C", + "title": "Lexicalist Theories of Syntax", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, and EL3201,\nwith a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4880D", + "title": "Experimental Syntax", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including (i) 28 MCs in EL, and (ii) EL3201 or with instructor's consent, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL4880E", + "title": "World Englishes", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EL5101", + "title": "Grammatical Analysis", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5101R", + "title": "Grammatical Analysis", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5102", + "title": "Phonetics and Phonology", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5102R", + "title": "Phonetics and Phonology", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5103", + "title": "Language in Society", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EL5250", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5103R", + "title": "Language in Society", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EL5250", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5202", + "title": "The Grammar of Modern English", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5202R", + "title": "The Grammar of Modern English", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5203", + "title": "Sociophonetics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5203R", + "title": "Sociophonetics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5204", + "title": "Linguistic Typology", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5204R", + "title": "Linguistic Typology", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5205", + "title": "Topics in Syntax", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the university or with the approval of the department.", + "corequisite": "" + }, + { + "moduleCode": "EL5205R", + "title": "Topics in Syntax", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the university or with the approval of the department.", + "corequisite": "" + }, + { + "moduleCode": "EL5206", + "title": "Advanced Psycholinguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5206R", + "title": "Advanced Psycholinguistics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5211", + "title": "Contact Languages", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5211R", + "title": "Contact Languages", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5212", + "title": "History of English", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student with the university or with the approval of the department.", + "corequisite": "" + }, + { + "moduleCode": "EL5212R", + "title": "History of English", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student with the university or with the approval of the department.", + "corequisite": "" + }, + { + "moduleCode": "EL5216", + "title": "Corpus Linguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5216R", + "title": "Corpus Linguistics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5221", + "title": "The Linguistic Analysis of Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5221R", + "title": "The Linguistic Analysis of Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5251", + "title": "Approaches to Discourse", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5251R", + "title": "Approaches to Discourse", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5252", + "title": "Language Variation and Change", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EL5252R", + "title": "Language Variation and Change", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EL5253", + "title": "Textual Construction of Knowledge", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5253R", + "title": "Textual Construction of Knowledge", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5254", + "title": "Language, Gender and Sexuality", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5254R", + "title": "Language, Gender and Sexuality", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5255", + "title": "Second Language Writing", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL5880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5255R", + "title": "Second Language Writing", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL5880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5270", + "title": "Explorations in Applied Linguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5270R", + "title": "Explorations in Applied Linguistics", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EL5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EL5880", + "title": "Topics in English Language and Linguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a graduate student in the university or should have the instructor’s approval.", + "corequisite": "" + }, + { + "moduleCode": "EL6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instruction", + "corequisite": "" + }, + { + "moduleCode": "EL6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor", + "corequisite": "" + }, + { + "moduleCode": "EL6880", + "title": "Topics in Grammatical Theory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EL6881", + "title": "Topics in Language and Cognition", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EL6882", + "title": "Topics in Language and Society", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EL6883", + "title": "English in Multilingual Societies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EL6884", + "title": "Topics in Applied Linguistics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EM1001", + "title": "Foundation English Course 1", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EM1002", + "title": "Foundation English Course 2", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EM1201", + "title": "English for Academic Purposes (Music) 1", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "AR1000, BE1000, ID1000, ET1000 / NK1001 / EA1101 / EG1471 / ES1301 / ES1101 / ES1102 / ES1103 and EM1101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open only to students enrolled in the Bachelor of Music Programme from AY2009/10 onwards. Students who score Band C in the YSTCM English Placement Test or students who have passed Foundation English Course 2 are required to read this module.", + "corequisite": "" + }, + { + "moduleCode": "EM1202", + "title": "English for Academic Purposes (Music) 2", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "AR1000, BE1000, ID1000, ET1000 / NK1001 / EA1101 / EG1471 / ES1301 / ES1101 / ES1102 / ES1103 and EM1101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open only to students enrolled in the Bachelor of Music programme from AY2009/10 onwards. Students who score Band B in the YSTCM English Placement Test or students who have passed English for Academic Purposes (Music) 1 are required to read this module.", + "corequisite": "" + }, + { + "moduleCode": "EMC5001", + "title": "Leadership & Managerial Skills", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5002", + "title": "Corporate Strategy For 21st Century Organisations", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5003", + "title": "Decision Making Using the Information Age Technologies", + "moduleCredit": 6, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5004", + "title": "Business Environment in Asia", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5005", + "title": "International Business and Law", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5006", + "title": "The Asian Consumer and Marketing Management", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5007", + "title": "Accounting and Management of Financial Resources", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5008", + "title": "Cross-Cultural Human Resource Management", + "moduleCredit": 6, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5009", + "title": "Operations and Logistics Management", + "moduleCredit": 6, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EMC5011", + "title": "Special Topics:corporate Finance and Corporate Governance", + "moduleCredit": 6, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EN1101E", + "title": "An Introduction to Literary Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Exempted from or passed the NUS Qualifying English Test, or exempted from further CELC Remedial English modules.", + "corequisite": "" + }, + { + "moduleCode": "EN2201", + "title": "Backgrounds to Western Literature and Culture", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN1101E or GEK1000", + "corequisite": "" + }, + { + "moduleCode": "EN2202", + "title": "Critical Reading", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EN3274 Critical Reading", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) EN1101E or GEK1000, and (2) EN majors", + "corequisite": "" + }, + { + "moduleCode": "EN2203", + "title": "Introduction to Film Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EN2113", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EN2205", + "title": "Late Medieval Literature and Culture", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3225", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN1101E or GEK1000", + "corequisite": "" + }, + { + "moduleCode": "EN2207", + "title": "Gender and Sexuality in Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN1101E or GEK1000", + "corequisite": "" + }, + { + "moduleCode": "EN2272", + "title": "Introduction to Writing Prose Fiction", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or EN1101E or TS1101E or GEK1011 or GEK1000 or GEM1003. This\nmodule is selective, and enrolment is by application.", + "corequisite": "" + }, + { + "moduleCode": "EN2273", + "title": "Introduction to Creative Writing", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or EN1101E or TS1101E or GEK1011 or GEK1000 or GEM1003. This\nmodule is selective, and enrolment is by application.", + "corequisite": "" + }, + { + "moduleCode": "EN2274", + "title": "Introduction to Screenwriting", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EL1101E or EN1101E or TS1101E or GEK1011 or GEK1000 or GEM1003. This\nmodule is selective, and enrolment is by application.", + "corequisite": "" + }, + { + "moduleCode": "EN2275", + "title": "Writing About Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN1101E or GEK1000. Open to EN majors only.", + "corequisite": "" + }, + { + "moduleCode": "EN2277", + "title": "Love's Word: Reading across Literature and Philosophy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN1101E", + "corequisite": "" + }, + { + "moduleCode": "EN3221", + "title": "The English Renaissance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3222", + "title": "The Eighteenth Century", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E/GEK1000, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3223", + "title": "Nineteenth Century Literature & Culture", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3224", + "title": "The Twentieth Century", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3226", + "title": "Shakespeare", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3227", + "title": "Romanticism", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3228", + "title": "Women Novelists: 1750-1800", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3229", + "title": "Shakespeare in His Time and Ours", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3231", + "title": "American Literature I", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "AS3231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3232", + "title": "American Literature II", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS3232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3234", + "title": "Asian American Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS3234", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3241", + "title": "Literature and Psychoanalysis", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3242", + "title": "History of Film", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN2203 or EN2204", + "corequisite": "" + }, + { + "moduleCode": "EN3243", + "title": "S/F: Science Fiction and Fantasy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3244", + "title": "Gender and Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3245", + "title": "Feminism: Text & Theory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E or (ii) a minimum of 12 MCs of EL modules, AND (iii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3246", + "title": "Literature and the other Arts", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEM3003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3247", + "title": "Introduction to Critical Theory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3248", + "title": "Reading the Horror Film", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EN2204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN2203", + "corequisite": "" + }, + { + "moduleCode": "EN3249", + "title": "Introduction to Visual Culture: Art, Film and Media", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3251", + "title": "Literature and Philosophy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3252", + "title": "The Genealogy of Affect Theory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3261", + "title": "European Literature I", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU3217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3262", + "title": "Postcolonial/Postmodern Writing", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3263", + "title": "Singapore Literature in Context", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E or GCE ‘A’ Level Literature or equivalent, AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3264", + "title": "In Other Wor(l)ds: Post ‐colonial Theory & Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3266", + "title": "Christianity and Contemporary Literature/Culture", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3267", + "title": "Modern Drama", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "TS3241", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3268", + "title": "Tragedy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3269", + "title": "Southeast Asian Literatures in English", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3271", + "title": "Advanced Playwriting", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "TS4212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN2271 or permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "EN3272", + "title": "Creative Writing", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN3276", + "title": "Literature, Media and Theory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EN2276", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2277)" + }, + { + "moduleCode": "EN3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "EN3880", + "title": "Topics in English Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Variable; depending on the topic to be covered.", + "corequisite": "So long as students have fulfilled EN1101E/GEK1000, they may take this EN level-3000 module in the same semester as they are taking EN2201 or EN2202 or EN2203 or EN2204." + }, + { + "moduleCode": "EN3880A", + "title": "History of Non-Western Film", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EN2203 or EN2204.", + "corequisite": "" + }, + { + "moduleCode": "EN3880B", + "title": "Reader-Responsibility", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)" + }, + { + "moduleCode": "EN4221", + "title": "Topics in the Seventeenth Century", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4222", + "title": "Topics in the Eighteenth Century", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4223", + "title": "Topics in the Nineteenth Century", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4224", + "title": "Topics in the Twentieth Century", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs including 28 MCs in EN or 28 MCs of EU/LA [French/German]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs including 28 MCs in EN or 28 MCs of EU/LA [French/German/Spanish]/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4226", + "title": "English Women Novelists 1800‐1900", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4227", + "title": "Five Years in the Eighteenth Century", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4232", + "title": "Topics in American Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "AS4232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4233", + "title": "Topics in American Culture", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS4233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4234", + "title": "Pynchon and the Poetics of Information", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN or 28 MCs in EU/LA (French/ German/ Spanish)/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4241", + "title": "Utopias and Dystopias", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4242", + "title": "Modern Critical Theory", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN or 28 MCs in EU/LA (French/ German/ Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4244", + "title": "Topics in Cultural Studies", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4245", + "title": "Narrative, Narration, Auteur", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, or 28 MCs in TS, and EN2203, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4247", + "title": "Film Theory", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4248", + "title": "Disclosure, Discovery and Detec/xtive Fiction", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4249", + "title": "Autotheory and Contemporary Autofiction", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4251", + "title": "Jonathan Swift", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN or 28 MCs in EU/LA (French/ German/ Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4261", + "title": "Metafictions and the Novel", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4262", + "title": "Writing Global India: (Dis)Possessions of Capitalism", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4263", + "title": "Topics in European Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "EN4264", + "title": "Modern Poetry", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN or 28 MCs in EU/LA (French/ German/ Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4265", + "title": "Approaches to World Literature: Critical Realism", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs including 28 MCs in EN or 28 MCs in EU/LA (French/ German/Spanish)/recognised modules or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs including 28 MCs in EN or 28 MCs in EU/LA (French/ German/Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4266", + "title": "South Asian Literatures in English", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EN3265", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs including 28 MCs in EN or 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs including 28 MCs in EN or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4267", + "title": "Literature and Ecology", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4271", + "title": "Research Workshop", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EL4200", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For EN and TS students - Completed 80 MCs including 28 MCs in EN or 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.\n\nFor EU students - Completed 80 MCs including 28 MCs in EL, EN or TS modules, or a combination from the three (Literary and/or linguistic modules from other departments may also contribute towards the 28 MCs total at the module chair's discretion), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EN4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 and before:\nCompleted 110 MCs, including 60 MCs of EN major requirements with a minimum CAP of 3.50.\n\nCohort 2013-2015:\nCompleted 110 MCs including 60 MCs of EN major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of EN major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "EN4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EN4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in EN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "EN4880", + "title": "Topics in English Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4880A", + "title": "Usurpation and Authority, 1558-1674", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN4880C", + "title": "The Short Story as a Global Form", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs including 28 MCs in EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EN5232", + "title": "Ideological Approaches to Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5232R", + "title": "Ideological Approaches to Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5235", + "title": "Politics and Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5235R", + "title": "Politics and Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5236", + "title": "The Literature of the Asian Diaspora", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5236R", + "title": "The Literature of the Asian Diaspora", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5238", + "title": "Twentieth Century Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5238R", + "title": "Twentieth Century Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5241", + "title": "Literature and New Worlds: 1590-1750", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5241R", + "title": "Literature and New Worlds: 1590-1750", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5242", + "title": "Women Novelists", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5242R", + "title": "Women Novelists", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5243", + "title": "The Birth of the Critic", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5243R", + "title": "The Birth of the Critic", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5244", + "title": "Shakespeare and Literary Theory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5244R", + "title": "Shakespeare and Literary Theory", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5245", + "title": "Gothic Properties", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5245R", + "title": "Gothic Properties", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5247", + "title": "Victorian Literature: History, Politics, Culture", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EN5247R", + "title": "Victorian Literature: History, Politics, Culture", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EN5248", + "title": "Literary Rejects", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5248R", + "title": "Literary Rejects", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5252", + "title": "Movies, Spectatorship and Subjectivity", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5252R", + "title": "Movies, Spectatorship and Subjectivity", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5253", + "title": "Writing in the Aftermath", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5253R", + "title": "Writing in the Aftermath", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5254", + "title": "Rethinking Failure in the 21st Century", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5254R", + "title": "Rethinking Failure in the 21st Century", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5880", + "title": "Topics in Literary Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5880A", + "title": "Literature and the Environment", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5880AR", + "title": "Literature and the Environment", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student with the university or with the approval of the department.", + "corequisite": "" + }, + { + "moduleCode": "EN5882", + "title": "Topics in Cultural Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5882R", + "title": "Topics in Cultural Studies", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN5222, EN6222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "EN5883", + "title": "Screen Culture in Southeast Asia", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN5883R", + "title": "Screen Culture in Southeast Asia", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "EN6102", + "title": "Advanced Critical Reading", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EN6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "EN6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor", + "corequisite": "" + }, + { + "moduleCode": "EN6880", + "title": "Topics in the New Literatures", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor", + "corequisite": "" + }, + { + "moduleCode": "EN6881", + "title": "Topics in Literary History", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor", + "corequisite": "" + }, + { + "moduleCode": "EN6882", + "title": "Advanced Topics in Cultural Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor", + "corequisite": "" + }, + { + "moduleCode": "ENV1101", + "title": "Environmental Studies: An Interdisciplinary Overview", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEM1903, YID1201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students in the Environmental Studies Programme.", + "corequisite": "" + }, + { + "moduleCode": "ENV1202", + "title": "Communications for Environmental Studies", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "SP1202", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to complete ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must first do so before they are allowed to read this module.", + "corequisite": "" + }, + { + "moduleCode": "ENV2101", + "title": "Global Environmental Change", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "LSM3272", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ENV1101", + "corequisite": "" + }, + { + "moduleCode": "ENV2102", + "title": "Environmental Law", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students in the Environmental Studies Programme.", + "corequisite": "" + }, + { + "moduleCode": "ENV2103", + "title": "The Environment and Public Health", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students in the Environmental Studies Programme.", + "corequisite": "" + }, + { + "moduleCode": "ENV2201", + "title": "Wildlife Protection in Southeast Asia", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Environmental Studies students only.", + "corequisite": "" + }, + { + "moduleCode": "ENV2202", + "title": "Sustainability of Sabah's Coastal Environment", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Environmental Studies students only.", + "corequisite": "" + }, + { + "moduleCode": "ENV2288", + "title": "Basic UROP in Environmental Studies I", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must have completed at least 24MCs worth of major requirement modules at the point of application and attained a CAP of 3.20 or higher", + "corequisite": "" + }, + { + "moduleCode": "ENV2289", + "title": "Basic UROP in Environmental Studies II", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must have completed at least 24MCs worth of major requirement modules at the point of application and attained a CAP of 3.20 or higher", + "corequisite": "" + }, + { + "moduleCode": "ENV3101", + "title": "Environmental Challenges: Asian Case Studies I", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ENV2101", + "corequisite": "" + }, + { + "moduleCode": "ENV3102", + "title": "Environmental Challenges: Asian Case Studies II", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ENV2101 Global Environmental Change", + "corequisite": "" + }, + { + "moduleCode": "ENV3103", + "title": "Environmental Economics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Environmental Studies students who have passed EC1101E or EC1301", + "corequisite": "" + }, + { + "moduleCode": "ENV3202", + "title": "Environmental Studies Internship Programme", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "ENV3202A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For BES students from cohort AY2017/2018 and before only. Students must have completed at least 2 regular semesters of studies at the point of application.", + "corequisite": "" + }, + { + "moduleCode": "ENV3202A", + "title": "Environmental Studies Internship Programme", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "ENV3202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For BES students from cohort AY2018/2019 and after only. Students must have completed at least 2 regular semesters of studies at the point of application.", + "corequisite": "N.A." + }, + { + "moduleCode": "ENV3288", + "title": "Advanced UROP in Environmental Studies I", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must have completed at least 24MCs worth of major requirement modules at the point of application and attained a CAP of 3.20 or higher", + "corequisite": "" + }, + { + "moduleCode": "ENV3289", + "title": "Advanced UROP in Environmental Studies II", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must have completed at least 24MCs worth of major requirement modules at the point of application and attained a CAP of 3.20 or higher", + "corequisite": "" + }, + { + "moduleCode": "ENV4101", + "title": "Environmental Management in Singapore", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ENV3101 and ENV3102", + "corequisite": "" + }, + { + "moduleCode": "ES1000", + "title": "Foundation Academic English", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Placement through the Qualifying English Test.", + "corequisite": "" + }, + { + "moduleCode": "ES1103", + "title": "English for Academic Purposes", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "ES1102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. Placement through the Qualifying English Test or a pass in ES1000. \n\n2. Only students who matriculated in AY2016/17 and onwards can take ES1103", + "corequisite": "" + }, + { + "moduleCode": "ES1502", + "title": "Essentials of Clear Writing", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES1531", + "title": "Critical Thinking And Writing", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "1. IEM1201%, UTW1001%, ES1531, GEK1549 and GET1021. \n2. U-town students cannot select ES2531.\n3. FAS1101\n4. ES1601 and ES1601A Professional and Academic Communication.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. Students who are required to take ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass the modules before they are allowed to read this module. \n2. Students who matriculated in AY2014/15 and AY2015/16 are to read the cross-listed modules, GEK1549 and GET1021, respectively.", + "corequisite": "" + }, + { + "moduleCode": "ES1541", + "title": "Exploring Science Communication through Popular Science", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "Those who have taken SP1203, ENV1202, SP2171, SP1541, UTown and USP writing modules, ES1601 are precluded from taking ES1541.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students from Cohort 2013 and 2014. If students are required to take ES1000 (Foundation Academic English) and ES1102 (English for Academic Purposes), they must complete them before taking ES1541.", + "corequisite": "" + }, + { + "moduleCode": "ES1601", + "title": "Professional and Academic Communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "CS2101, IS2101, ES2331, ES2002, ES2007D, SP1541, RVRC students will not be able to register for FAS1102/ES1531/ES2531/GET1021, FAS1103 Effective Workplace Communication", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "ES1000 and/or ES1102/ES1103", + "corequisite": "GEQ1917" + }, + { + "moduleCode": "ES1601A", + "title": "Professional and Academic Communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "CS2101 Effective Communication for Computing Professional, IS2101 Business and Technical Communication, ES2331 Communicating Engineering, ES2002 Business Communication, ES2007D Professional Communication, ES1541/SP1541 Exploring Science Communication through Popular Science, ES1501%.", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "ES1000 and/or ES1102/ES1103", + "corequisite": "GEQ1917" + }, + { + "moduleCode": "ES2002", + "title": "Business Communication for Leaders (BBA)", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO2706 Business Communication for Leaders (ACC), IS2101 Business and Technical Communication, ES2007D Professional Communication, ES1601 Professional and Academic Communication, UWC2101% Writing and Critical Thinking", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to read ES1000 must pass it before taking ES2002.", + "corequisite": "" + }, + { + "moduleCode": "ES2007D", + "title": "Professional Communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "CS2301, ES2002, IS2101, CS2101, CG1413, ES1601.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students required to take ES1000 and ES1102/ES1103 must clear those courses first before taking ES2007D.", + "corequisite": "" + }, + { + "moduleCode": "ES2331", + "title": "Communicating Engineering", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "ES1501%, ES1601, UTown students from cohort AY2014/15 and before should not be allowed to bid for the module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "If students are required to take ES1000 (Foundation Academic English) and/or ES1103 (English for Academic Purposes), they must complete and pass these modules before taking ES2331.", + "corequisite": "" + }, + { + "moduleCode": "ES2531", + "title": "Critical Thinking And Writing", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "1. IEM1201%, UTW1001%, ES1531, GEK1549 and GET1021. \n2. U-town students cannot select ES2531.\n3. ES1601 and ES1601A Professional and Academic Communication.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. Students who are required to take ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass the modules before they are allowed to read this module. \n2. Students who matriculated in AY2014/15 and AY2015/16 are to read the cross-listed modules, GEK1549 and GET1021, respectively.", + "corequisite": "" + }, + { + "moduleCode": "ES2660", + "title": "Communicating in the Information Age", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "GET1006 and GEK1901", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. Students who are required to take ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes, must pass those modules before they are allowed to read this module.\n2. Only SoC students matriculated in AY2016/2017 and after, are allowed to take ES2660.", + "corequisite": "" + }, + { + "moduleCode": "ES5000", + "title": "Graduate English Course (Basic Level)", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES5001", + "title": "English For Graduates (Intermediate)", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES5001A", + "title": "Graduate English Course (Intermediate Level)", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES5002", + "title": "Graduate English Course (Advanced Level)", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "•\tTo be admitted to this module, students must have taken the Diagnostic English Test and received a ‘Band 3’, or passed ES5000, Basic Level Writing, and/or ES5001A, Intermediate Level Writing if required to do so. \n•\tPhD candidates generally take ES5002 in the fourth year of their candidature when they are writing their thesis.", + "corequisite": "" + }, + { + "moduleCode": "ES5002A", + "title": "English For Graduates (Advanced) - Thesis Writing", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES5002B", + "title": "English For Graduates (Advanced) - Oral Presentation Skills", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES5101", + "title": "Technical Communication for Engineers", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ES5610", + "title": "Academic Communication for Business", + "moduleCredit": 0, + "department": "Center for Engl Lang Comms", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "ES5002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE1001", + "title": "Environmental Engineering Fundamentals", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ESE1001FC/ESE1001X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Mathematics and H2 Chemistry, or \nMA1312 Calculus with Applications, for BES undergraduate without H2 Mathematic", + "corequisite": "" + }, + { + "moduleCode": "ESE1102", + "title": "Principles & Practice in Infrastructure and Environment", + "moduleCredit": 6, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE2000", + "title": "Environmental Engineering Fundamentals", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ESE1001, ESE1001FC, ESE1001X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Mathematics and H2 Chemistry, or \nMA1312 Calculus with Applications, for BES undergraduate without H2 Mathematic", + "corequisite": "" + }, + { + "moduleCode": "ESE2001", + "title": "Environmental Challenges in the Anthropocene", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2102", + "corequisite": "" + }, + { + "moduleCode": "ESE2102", + "title": "Principles & Practice in Infrastructure and Environment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ESE1102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE2401", + "title": "Water Science & Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2001", + "corequisite": "" + }, + { + "moduleCode": "ESE3001", + "title": "Water Quality Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ESE2401 & ESE3401 & TCE3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE3011", + "title": "Integrated Project for Environmental Sustainability", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE3101", + "title": "Solid And Hazardous Waste Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2 standing or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ESE3201", + "title": "Air Quality Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2 standing or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ESE3301", + "title": "Environmental Microbiological Principles", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2 standing or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ESE3401", + "title": "Sustainable Urban Water Technologies", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE3001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2401 & CE2134", + "corequisite": "" + }, + { + "moduleCode": "ESE4301", + "title": "Wastewater Biotechnology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE3301", + "corequisite": "" + }, + { + "moduleCode": "ESE4401", + "title": "Water & Wastewater Engineering 2", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE4401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE2401 and ESE3401", + "corequisite": "" + }, + { + "moduleCode": "ESE4403", + "title": "Membrane Tech In Env Applns", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE4404", + "title": "Bioenergy", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Year 3 standing or equivalent with background in fluid mechanics", + "corequisite": "" + }, + { + "moduleCode": "ESE4405", + "title": "Urban Water Engineering & Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE3401 or ESE3001", + "corequisite": "" + }, + { + "moduleCode": "ESE4406", + "title": "Energy and the Environment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN4248", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE3101 and ESE 3201", + "corequisite": "" + }, + { + "moduleCode": "ESE4407", + "title": "Environmental Forensics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE3101, ESE3201 and ESE3401", + "corequisite": "" + }, + { + "moduleCode": "ESE4408", + "title": "Environmental Impact Assessment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE4408", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE3101, ESE3201, ESE3301 and ESE3401", + "corequisite": "" + }, + { + "moduleCode": "ESE4409", + "title": "Environmental Applications of Adsorption", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CN3132", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE 3201 and ESE3401", + "corequisite": "" + }, + { + "moduleCode": "ESE4501", + "title": "Design Project", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESE4 standing", + "corequisite": "" + }, + { + "moduleCode": "ESE4502", + "title": "B.Eng. Dissertation", + "moduleCredit": 12, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "ESE4 standing", + "corequisite": "" + }, + { + "moduleCode": "ESE4502R", + "title": "B. Eng. Dissertation", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "EVE4-standing", + "corequisite": "" + }, + { + "moduleCode": "ESE4612", + "title": "Exchange Unrestricted Elective 4", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5001", + "title": "Environmental Engineering Principles", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5002", + "title": "Physical and Process Principles", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate students standing", + "corequisite": "" + }, + { + "moduleCode": "ESE5003", + "title": "Environmental Chemical Principles", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "Graduate students standing", + "corequisite": "" + }, + { + "moduleCode": "ESE5004", + "title": "Research Project", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5102", + "title": "Sludge and Solid Waste Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5202", + "title": "Air Pollution Control Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5202A", + "title": "Technologies for Air Quality Control", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5202B", + "title": "Air Quality Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5203", + "title": "Aerosol Science and Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2134 Hydraulics or equivalent courses involving introductory level of\nfluid mechanics.", + "corequisite": "" + }, + { + "moduleCode": "ESE5204", + "title": "Toxic and Hazardous Waste Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5204A", + "title": "Bioremediation of Hazardous Chemicals in Soil & Water", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5204B", + "title": "Physico-Chemical Treatment for Hazardous Chemicals", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5205", + "title": "Sludge and Solid Waste Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5301", + "title": "Environmental Biological Principles", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Environmental Microbiological Principles or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ESE5401", + "title": "Water Quality Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Water Science & Technology or ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5402", + "title": "Industrial Wastewater Control", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5402A", + "title": "Physico-Chemical Treatment for Industrial Wastewater", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5402B", + "title": "Biotechnologies for Industrial Wastewater Control", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5403A", + "title": "Technologies for Water Reclamation and Reuse", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5403B", + "title": "Applications in Water Reclamation and Reuse", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5404", + "title": "Biological Treatment Processes", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5405", + "title": "Water Treatment Processes", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5406", + "title": "Membrane Treatment Process Modelling", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5407", + "title": "Membrane Technology for Water Management", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4403 Membrane Technology in Environmental Application\nOr\nESE5406 Membrane Treatment Processes and Modeling\nOr \nLevel 5 standing", + "corequisite": "" + }, + { + "moduleCode": "ESE5601", + "title": "Environmental Risk Assessment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5602", + "title": "Environmental Management Systems", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "ESE5607", + "title": "Green Catalysis", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5608", + "title": "Heavy Metals in the Environment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ESE5003 Environmental Chemical Principles", + "corequisite": "" + }, + { + "moduleCode": "ESE5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5701", + "title": "Meta-data for environmental ecosystems", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CE3132", + "corequisite": "CE5310" + }, + { + "moduleCode": "ESE5880A", + "title": "Topics in Environmental Engineering: Chem. & Lab Safety", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5901", + "title": "Environmental Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5901A", + "title": "Introduction to Environmental Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5901B", + "title": "Technologies in Environmental Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE6001", + "title": "Environmental Fate of Organic Contaminant", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Graduate student standing", + "corequisite": "" + }, + { + "moduleCode": "ESE6301", + "title": "Topics in Environmental Biotechnology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESE6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESP1104B", + "title": "Sensor System Electronics", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ESP1104A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Mathematics and Physics", + "corequisite": "" + }, + { + "moduleCode": "ESP1111", + "title": "Engineering Principles In-Action", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESP2106", + "title": "Principles of Continua", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1433", + "corequisite": "" + }, + { + "moduleCode": "ESP2107", + "title": "Numerical Methods and Statistics", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1507 and MA1508/MA1508E) or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ESP2110", + "title": "Design Project 2", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ESP1104 & ESP1107", + "corequisite": "" + }, + { + "moduleCode": "ESP3102", + "title": "From Making Nano to Probing Nano", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2130B, PC2133", + "corequisite": "" + }, + { + "moduleCode": "ESP3201", + "title": "Machine Learning in Robotics and Engineering", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1508A Linear Algebra and Application\nCS1010E Programming Methodology\nESP2110 Design Project or ME2142 Feedback Control Systems", + "corequisite": "" + }, + { + "moduleCode": "ESP3902", + "title": "Major Design Project I", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ESP3901 Major Design Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 Standing", + "corequisite": "" + }, + { + "moduleCode": "ESP3903", + "title": "Major Design Project 2", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ESP3901 Major Design Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing", + "corequisite": "" + }, + { + "moduleCode": "ESP4401", + "title": "Optimization of Energy Systems", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any module on heat and mass transfer such as Heat Transfer (ME3122) OR Thermodynamics and Statistical M echanics (PC2230) OR Energy Conversion Processes (ME3221) OR Industrial Heat Transfer (ME4225)", + "corequisite": "" + }, + { + "moduleCode": "ESP4901", + "title": "Research Project", + "moduleCredit": 8, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 standing", + "corequisite": "" + }, + { + "moduleCode": "ESP4901A", + "title": "Research Project", + "moduleCredit": 12, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "ESP4901", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 standing", + "corequisite": "" + }, + { + "moduleCode": "ESP5402", + "title": "Transport Phenomena in Energy Systems", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ESP5403", + "title": "Nanomaterials for Energy Systems", + "moduleCredit": 4, + "department": "Engineering Science Programme", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU1101E", + "title": "Making of Modern Europe", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2203", + "title": "Ancient Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2204", + "title": "Modern Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS2204, PS2231, EU2218, PS2201B, PS2218", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2213", + "title": "Upheaval in Europe: 1848-1918", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2231", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2214", + "title": "Introduction to Continental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2212, GEK2030", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2217", + "title": "European Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2236", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2218", + "title": "Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2231, PS2201B, PS2218", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2221", + "title": "Empires, Colonies and Imperialism", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "HY2245", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2222", + "title": "Critical Theory and Hermeneutics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2219", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU2224", + "title": "Europe since 1945 in Film", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3212", + "title": "Europe of the Dictators", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY3227", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3215", + "title": "European Economic History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC3391/EC3213, EC3393/EC3215, EC3219, EC3392", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3217", + "title": "European Literature I", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3261", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207, EN2275, EN2276, EN2277)", + "corequisite": "So long as students have fulfilled EN1101E/GEK1000, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207)." + }, + { + "moduleCode": "EU3224", + "title": "Social Thought & Social Theory", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SC3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3227", + "title": "Continental European Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH3207", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3230", + "title": "Cold War in Europe, 1945-1991", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY3209", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3231", + "title": "Modern Imperialism", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY3242", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EU3550", + "title": "Internship", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules (Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in European Studies; and have declared European Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "EU4214", + "title": "Special Paper in Modern European History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY4212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/recognized modules or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4215", + "title": "Imperial Legacies in Europe", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/ or 28 MCs in GL/GL recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4217", + "title": "Comparative Business Cultures", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC4392, EC4218", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in EU/LA\n[French/German/Spanis h]/ recognised modules, including EU3214/EC3376/EC3218 or EU3215/EC3392/EC3219, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4220", + "title": "Topics in European Literature", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN4263", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in EU/ LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4223", + "title": "Recent Continental European Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in EU / LA [French/German/Spanis h]/recognised modules or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4224", + "title": "Early Modern Europe and its World", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "HY4205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/recognised modules or 28MCs in GL/GL recognised non- language modules or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/recognised modules or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4225", + "title": "European Intellectual History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY4226", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in EU/LA [French/German/ Spanish]/ or 28 MCs in GL/GL recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4226", + "title": "Imperialism and Empires", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "HY4209", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs including 28MCs in EU / LA [French/German/Spanish]/recognised modules or 28MCs in PS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs including 28MCs in EU / LA [French/German/Spanish]/recognised modules or 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4227A", + "title": "Major Political Thinkers: Plato & Rousseau", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS4217A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in EU/ LA [French/German/Spanis h]/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4227C", + "title": "Major Political Thinkers: Montaigne", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS4217C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in EU/ LA [French/German/Spanis h]/ recognised with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "EU4228", + "title": "European Foreign Policy", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS4218", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80MCs, including 28 MCs in EU/ LA French/German]/ recognised modules or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track\n.\nCohort 2015-2019:\nCompleted 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/ recognised modules or 28 MCs in GL/GL recognised non language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in EU/ LA [French/German/ Spanish]/ recognised mod", + "corequisite": "" + }, + { + "moduleCode": "EU4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EU4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015: Completed\n110 MCs including 60 MCs in EU / LA [French/German/Spanis h]/ recognized modules, with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs in EU / LA [French/German/Spanis h]/recognized modules, with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "EU4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EU4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EU / LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EU / LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "EV5105", + "title": "Biological Waste Treatment", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX1881", + "title": "Exchange ULR Breadth", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX3890", + "title": "Exchange UEM (CEE)", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX4003", + "title": "Exchange Technical Elective (CEE)", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX4004", + "title": "Exchange Technical Elective (CEE)", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX4874", + "title": "Unrestricted Elective Outside Major", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX4875", + "title": "Unrestricted Elective Outside Major", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "EX5104", + "title": "Environmental Technology", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FAS1101", + "title": "Writing Academically: Arts and Social Sciences", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "1) Non-FASS students\n2) Students who have read and passed ES1531/GEK1549/GET1021 or ES1501%\n3) Students who have read and passed ES2531", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to read ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass those modules before they are allowed to read this module.", + "corequisite": "" + }, + { + "moduleCode": "FAS1102", + "title": "Public Writing and Communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "1) Non-FASS students\n2) Students who have read and passed ES2002, CS2101, IS2101, GEK1901/GET1006, ES2660, ES2007D, ES1541/SP1541, ENV1202 and ES1601.\n3) FASS USP students from Cohort 2017 and onwards\n4) ES1601 and ES1601A Professional and Academic Communication", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to read ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass those modules before they are allowed to read this module.", + "corequisite": "" + }, + { + "moduleCode": "FAS1103", + "title": "Effective Workplace Communication", + "moduleCredit": 2, + "department": "Center for Engl Lang Comms", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "1. Non-FASS students\n2. Students who have read and passed ES2002, CS2101, FAS1102, IS2101, GEK1901/GET1006, ES2660, ES2007D, ES1541/SP1541, ENV1202 and ES1601.\n3. FASS USP students from Cohort 2017 and onwards", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to read ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass those modules before they are allowed to read this module.", + "corequisite": "" + }, + { + "moduleCode": "FAS2551", + "title": "FASS Internship", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "Cohort 2016 onwards: Students who have completed or are pursuing the year-long NOC programmes are not allowed to read this module. Students should therefore consider their options carefully before embarking on their internships.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least 2 regular Semesters before enrolment in the module.\nCohort 2018 and after: CFG1002 Career Catalyst.", + "corequisite": "" + }, + { + "moduleCode": "FAS2552", + "title": "FASS Extended Internship", + "moduleCredit": 8, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Module may not be taken in the honours year, or used to delay honours.\nCohort 2016 onwards: Students who have completed or are pursuing the year-long NOC programmes are not allowed to read this module. Students should therefore consider their options carefully before embarking on their internships.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least 2 regular Semesters before enrolment in the module.\nCohort 2018 and after: CFG1002 Career Catalyst.", + "corequisite": "" + }, + { + "moduleCode": "FAS2553", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 3, + 4 + ], + "preclusion": "Cohort 2016 onwards: FASS students who have completed or are pursuing the year-long NOC programmes are not allowed to read this module. Students should therefore consider their options carefully before embarking on their internships.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "• 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.\n• FAS2551 FASS Internship", + "corequisite": "" + }, + { + "moduleCode": "FAS3550", + "title": "FASS Industry Seminar", + "moduleCredit": 2, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS FASS undergraduates who have completed 40MC and CFG1002 Career Catalyst", + "corequisite": "" + }, + { + "moduleCode": "FAS3551", + "title": "FASS Capstone Career Preparation", + "moduleCredit": 2, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS FASS undergraduates who have completed 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "FD1000", + "title": "First Aid", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FDP2001", + "title": "Special Mathematics Classes 1, 2 and 3", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level mathematics", + "corequisite": "" + }, + { + "moduleCode": "FDP2002", + "title": "Special Physics Class 1, 2 and 3", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Physics", + "corequisite": "" + }, + { + "moduleCode": "FDP2011", + "title": "Special Mathematics Class 1, 2", + "moduleCredit": 8, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "FDP2001 Special Mathematics Class 1, 2 & 3", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level mathematics or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "FDP2012", + "title": "Special Mathematics Class 3", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "FDP2001 Special Class in Mathematics 1,2 &3", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FDP2011 Special Mathematics Class 1, 2", + "corequisite": "" + }, + { + "moduleCode": "FDP2021", + "title": "Special Physics Class 1, 2", + "moduleCredit": 8, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "FDP2002 Special Physics Class 1, 2 & 3", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Physics or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "FDP2022", + "title": "Special Physics Class 3", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "FDP2002 Special Class in Physics 1,2 & 3", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FDP2021 Special Class in Physics 1, 2", + "corequisite": "" + }, + { + "moduleCode": "FE5101", + "title": "Derivatives And Fixed Income", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5101D", + "title": "Derivatives And Fixed Income", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5103", + "title": "Equity Products and Exotics", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5105", + "title": "Corporate Financing and Risk", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5107", + "title": "Risk Analyses And Management", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5107D", + "title": "Risk Analyses And Management", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5108", + "title": "Portfolio Theory And Investments", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5110", + "title": "Financial Engineering Project", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5112", + "title": "Stochastic Calculus and Quantitative Methods", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5112D", + "title": "Stochastic Calculus and Quantitative Methods", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5116", + "title": "Programming and Advanced Numerical Methods", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 2, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5101, FE5101D Derivatives and Fixed Income and FE5112, FE5112D Stochastic Calculus and Quantitative Methods", + "corequisite": "" + }, + { + "moduleCode": "FE5116D", + "title": "Programming and Advanced Numerical Methods", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5101, FE5101D Derivatives and Fixed Income and FE5112, FE5112D Stochastic Calculus and Quantitative Methods", + "corequisite": "" + }, + { + "moduleCode": "FE5208", + "title": "Term Structure and Interest Rate Derivatives", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5101, FE5101D Derivatives and Fixed Income and FE5112, FE5112D Stochastic Calculus and Quantitative Methods", + "corequisite": "" + }, + { + "moduleCode": "FE5209", + "title": "Financial Econometrics", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5209D", + "title": "Financial Econometrics", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5210", + "title": "Research Methods in Finance", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5102", + "corequisite": "" + }, + { + "moduleCode": "FE5211", + "title": "Seminar In Financial Engineering", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5215", + "title": "Seminar in Financial Product Innovations", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5216", + "title": "Financial Technology Innovations Seminar", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5217", + "title": "Seminar in Risk Management and Alternative Investment", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5218", + "title": "Credit Risk", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5101: Derivatives and Fixed Income", + "corequisite": "FE 5102: Quantitative Methods and Programming" + }, + { + "moduleCode": "FE5219", + "title": "Credit Analytics Practicum", + "moduleCredit": 6, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5101, FE501D Derivatives and Fixed Income, FE 5112, FE5112D Stochastic Calculus and quantitative Methods and FE5209, FE5209D Financial Econometrics", + "corequisite": "" + }, + { + "moduleCode": "FE5221", + "title": "Trading Principles & Fundamentals", + "moduleCredit": 2, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5222", + "title": "Advanced Derivatives Pricing", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FE5112/D Stochastic Calculus and Quantitative Methods", + "corequisite": "" + }, + { + "moduleCode": "FE5223", + "title": "Introduction to Electronic Financial Market", + "moduleCredit": 2, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5224", + "title": "Current Topics In Applied Risk Management", + "moduleCredit": 2, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5225", + "title": "Machine Learning and FinTech", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 2 + ], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "FE5226", + "title": "C++ in Financial Engineering", + "moduleCredit": 4, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FE5227", + "title": "Commodities: Fundamentals and Modelling", + "moduleCredit": 2, + "department": "Risk Management Institute", + "faculty": "Risk Management Institute", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN2004", + "title": "Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken CS2251 or EC3209 or EC3333 or BK2004 or BZ2004 or BH2004 or FNA2004 are not allowed to take FIN2004. 1st Year BSc(PFM), all BSc (RE) and Computational Finance are not allowed to take FIN2004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed BK1003 or BZ1002 or BH1002 or FNA1002/ACC1002 or FNA1002X/ACC1002X or FNA1002E or BH1002E or EC3212 or EG1422 before they are allowed to take FIN2004.", + "corequisite": "" + }, + { + "moduleCode": "FIN2004X", + "title": "Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken CS2251 or EC3209 or EC3333 or BK2004 or BZ2004 or BH2004 or FNA2004 are not allowed to take FIN2004. 1st Year BSc(PFM), all BSc (RE) and Computational Finance are not allowed to take FIN2004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed BK1003 or BZ1002 or BH1002 or FNA1002/ACC1002 or FNA1002X/ACC1002X or FNA1002E or BH1002E or EC3212 or EG1422 before they are allowed to take FIN2004.", + "corequisite": "" + }, + { + "moduleCode": "FIN2111", + "title": "Personal Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed BZ3314 or BH2111 or FNA2111 are not allowed to take FIN2111.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN2704", + "title": "Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN2004", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1701/ACC1701X or EC2204.", + "corequisite": "" + }, + { + "moduleCode": "FIN2704X", + "title": "Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN2004", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1701/ACC1701X or EC2204.", + "corequisite": "" + }, + { + "moduleCode": "FIN3101", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3101 or BZ3301 or BK3100 or FNA3101 or FE5105 or FIN3101A or FIN3101B or FIN3101C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3101A", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3101 or BZ3301 or BK3100 or FNA3101 or FE5105 or FIN3101 or FIN3101B or FIN3101C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3101B", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3101 or BZ3301 or BK3100 or FNA3101 or FE5105 or FIN3101 or FIN3101A or FIN3101C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3101C", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3101 or BZ3301 or BK3100 or FNA3101 or FE5105 or FIN3101 or FIN3101A or FIN3101B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3102", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102A/B/C or FIN3102A/B/C or FE5108 or EC3333 or CF3101/QF3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3102A", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102 or FNA3102B/C or FIN3102 or FIN3102B/C or FE5108 or EC3333 or CF3101/QF3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3102B", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102 or FNA3102A/C or FIN3102 or FIN3102A/C or FE5108 or EC3333 or CF3101/QF3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3102C", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102 or FNA3102A/B or FIN3102 or FIN3102A/B or FE5108 or EC3333 or CF3101/QF3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3102D", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102A/B/C or FIN3102A/B/C or FE5108 or EC3333 or CF3101/QF3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3103", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3103 or BZ3303 or BK3102 or FNA3103 or FIN3103A or FIN3103B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3103A", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3103 or BZ3303 or BK3102 or FNA3103 or FIN3103 or FIN3103B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3103B", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3103 or BZ3303 or BK3102 or FNA3103 or FIN3103 or FIN3103A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3103C", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3103 or BZ3303 or BK3102 or FNA3103 or FIN3103 or FIN3103B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3113", + "title": "Financial Statement Analysis", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3113 or BZ3105 or BK3105 or FNA3113", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002 or FNA1002X or ACC1002 or ACC1002X or BH1002 or BZ1002 or BK1003 or FNA1002E or BH1002E", + "corequisite": "" + }, + { + "moduleCode": "FIN3114", + "title": "Global Financial and Accounting Issues", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3114 are not allowed to take FIN3114.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002 or FNA1002X or ACC1002 or ACC1002X", + "corequisite": "" + }, + { + "moduleCode": "FIN3115", + "title": "International Financial Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BH3115 or BZ3304 or BK3108 or FNA3115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3102 or FIN3102 or FIN3102A or FIN3102B or FIN3102C", + "corequisite": "" + }, + { + "moduleCode": "FIN3116", + "title": "Options and Futures", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BH3116 or BZ3312 or BK3109A or FNA3116 or FIN3116A or FIN3116B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3102 or FNA3102A or FNA3102B or FNA3102C or FIN3102 or FIN3102A or FIN3102B or FIN3102C", + "corequisite": "" + }, + { + "moduleCode": "FIN3117", + "title": "Bank Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have passed FNA3117 are not allowed to take FIN3117. Not for students who have passed FE5105.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004/FIN2004 and FNA3102/FIN3102", + "corequisite": "" + }, + { + "moduleCode": "FIN3118", + "title": "Financial Risk Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3118 or BZ3305 or FNA3118", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3102", + "corequisite": "" + }, + { + "moduleCode": "FIN3119", + "title": "Risk and Insurance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3119 or BZ3311 or FNA3119", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or FIN2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FIN3120", + "title": "Topics in Finance (TIF)", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA3120 are not allowed to take FIN3120.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on specific topics offered.", + "corequisite": "" + }, + { + "moduleCode": "FIN3120B", + "title": "TIF: Transaction Banking", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101 Corporate Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3120C", + "title": "TIF: China's Capital Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004 Finance and FIN3103 Financial Markets", + "corequisite": "" + }, + { + "moduleCode": "FIN3120D", + "title": "TIF: Foreign Exchange Trading", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004 Finance and FIN3103 Financial Markets", + "corequisite": "Recommended (but not required) co-requisite: FIN3120E Topics in Finance: Physical Commodity Markets and Assets. The rationale is that commodities and foreign exchange usually sit in the same division in many banks, hence having both courses would be usef" + }, + { + "moduleCode": "FIN3120E", + "title": "TIF: Phy. Comdty Mkt & Assets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004 Finance and FIN3103 Financial Markets", + "corequisite": "Recommended (but not required) co-requisite: FIN3120D Topics in Finance: Foreign Exchange Trading. The rationale is that commodities and foreign exchange usually sit in the same division in many banks, hence having both courses would be useful from a job" + }, + { + "moduleCode": "FIN3120X", + "title": "Topic in Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN3120Y", + "title": "Topic in Finance", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN3120Z", + "title": "Topic in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN3129", + "title": "Independent Study in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "FIN3130", + "title": "Financial Modelling", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1002 Financial Accounting\n• FIN2004 Finance\n• FIN3102 Investment Analysis and Portfolio\nManagement\n• An aptitude with mathematics and programming would\nbe a plus.", + "corequisite": "" + }, + { + "moduleCode": "FIN3131", + "title": "Fixed Income Securities", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FNA3120A or CF3201/QF3201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3102 or FIN3102 or FIN3102A or FIN3102B or FIN3102C", + "corequisite": "" + }, + { + "moduleCode": "FIN3132", + "title": "Value Investing In Asia", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "- ACC1002 Financial Accounting \n- FIN3101 Corporate Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3133", + "title": "Measuring Success in Philanthropy and Impact Investing", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4117", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN3134", + "title": "Household Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3719 Household Finance; and\nFIN4113 Personal Finance and Wealth Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004/FIN2004X Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3135", + "title": "Consumer Banking Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004/FIN2704 Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3139", + "title": "Independent Study in Finance", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics." + }, + { + "moduleCode": "FIN3701", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3101; RE3807.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3701A", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3101; RE3807.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3701B", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3101; RE3807.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3701C", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3101; RE3807.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3701D", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3101; RE3807.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3702", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3702A", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3702B", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3702C", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3702D", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3703", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3703A", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3703B", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3703C", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3703D", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3711", + "title": "International Financial Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN3115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3712", + "title": "Options and Futures", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN3116", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X", + "corequisite": "" + }, + { + "moduleCode": "FIN3713", + "title": "Bank Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3117", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X and FIN3702.", + "corequisite": "" + }, + { + "moduleCode": "FIN3714", + "title": "Financial Risk Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3118", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3702", + "corequisite": "" + }, + { + "moduleCode": "FIN3715", + "title": "Risk and Insurance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3119", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X.", + "corequisite": "" + }, + { + "moduleCode": "FIN3716", + "title": "Financial Modelling", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3130", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ACC1701/ACC1701X or EC2204) and FIN3702.", + "corequisite": "" + }, + { + "moduleCode": "FIN3717", + "title": "Fixed Income Securities", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN3131", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3702", + "corequisite": "" + }, + { + "moduleCode": "FIN3718", + "title": "Value Investing in Asia", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3132", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ACC1701/ACC1701X or EC2204) and (FIN3701 or RE3807).", + "corequisite": "" + }, + { + "moduleCode": "FIN3719", + "title": "Household Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3134 Household Finance; and\nFIN4712 Personal Finance and Wealth Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3720", + "title": "Financial Statement Analysis", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN3113 Financial Statement Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ACC1701 Accounting for Decision Makers\nFIN2704 Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3721", + "title": "Consumer Banking Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2004 Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN3751", + "title": "Independent Study in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN3752", + "title": "Independent Study in Finance (2 MC)", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761", + "title": "Topics in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761A", + "title": "TIF: Transaction Banking", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3120B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3701 or RE3807.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761B", + "title": "TIF: China’s Capital Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3120C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X and FIN3703.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761C", + "title": "TIF: Foreign Exchange Trading", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3120D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X and FIN3703.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761D", + "title": "TIF: Physical Commodity Markets and Assets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN3120E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X and FIN3703.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761X", + "title": "Topics in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761Y", + "title": "Topics in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN3761Z", + "title": "Topics in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN4111", + "title": "Research Methods in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed FNA4111 are not allowed to take FIN4111. Not for students who have passed FE5209.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3101/FIN3101/FIN3101A/FIN3101B/FIN3101C and FNA3102/FIN3102/FIN3102A/FIN3102B/FIN3102C and ST1131A/ST1131/ST1232/MA2216/ST2131/ST2334/EE2003/ME2491", + "corequisite": "" + }, + { + "moduleCode": "FIN4112", + "title": "Seminars in Finance (SIF)", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4112A", + "title": "SIF: Empirical Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4112C", + "title": "SIF: Business Valuation", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4112D", + "title": "SIF: Private Equity and Governance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA4112D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002X/ACC1002X, FIN3101 and FIN3102", + "corequisite": "" + }, + { + "moduleCode": "FIN4112G", + "title": "SIF: Private Equity", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4112F: Seminars in Finance: Private Equity and Investment Banking", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101 Corporate Finance\n FIN3102 Investment Analysis and Portfolio Management\n FIN3103 Financial Markets", + "corequisite": "" + }, + { + "moduleCode": "FIN4112H", + "title": "SIF: Investment Banking", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4112F: Seminars in Finance: Private Equity and Investment Banking", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "- FIN3101 Corporate Finance\n- FIN3102 Investment Analysis and Portfolio Management\n- FIN3103 Financial Markets", + "corequisite": "" + }, + { + "moduleCode": "FIN4112J", + "title": "SIF: Security Analysis and Valuation", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3102 Investment Analysis and Portfolio Management", + "corequisite": "" + }, + { + "moduleCode": "FIN4112K", + "title": "SIF: Applied Portfolio Management Techniques", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3102 Investment Analysis and Portfolio Management", + "corequisite": "" + }, + { + "moduleCode": "FIN4112L", + "title": "SIF: Family Business & Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101 Corporate Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN4112M", + "title": "SIF: Applied Investment Valuation", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004 Finance and FIN3101 Corporate Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN4112Y", + "title": "Seminars in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4112Z", + "title": "Seminars in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4113", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA4112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101% and ST1131A", + "corequisite": "" + }, + { + "moduleCode": "FIN4113A", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA4112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101% and ST1131A", + "corequisite": "" + }, + { + "moduleCode": "FIN4113B", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA4112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101% and ST1131A", + "corequisite": "" + }, + { + "moduleCode": "FIN4113C", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA4112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101% and ST1131A", + "corequisite": "" + }, + { + "moduleCode": "FIN4113Y", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FNA4112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101% and ST1131A", + "corequisite": "" + }, + { + "moduleCode": "FIN4114", + "title": "Private Equity and Investment Banking", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101 and FIN3102 and FIN3103", + "corequisite": "" + }, + { + "moduleCode": "FIN4115", + "title": "Advanced Portfolio Mgt: Security Analysis & Valuation", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "- ACC1002 Financial Accounting \n- FIN3101 Corporate Finance \n- FIN3102 Investment Analysis and Portfolio Management", + "corequisite": "" + }, + { + "moduleCode": "FIN4116", + "title": "Valuation and Mergers & Acquisitions", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004, FIN3101", + "corequisite": "" + }, + { + "moduleCode": "FIN4117", + "title": "Measuring Success in Philanthropy and Impact Investing", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN3133", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4118", + "title": "Equity Research Seminar", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101", + "corequisite": "" + }, + { + "moduleCode": "FIN4119", + "title": "Advanced Independent Study in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "FIN4120", + "title": "Equity Research Seminar 1", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "FIN3132 Value Investing In Asia" + }, + { + "moduleCode": "FIN4121", + "title": "Equity Research Seminar 2", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "FIN3132 Value Investing In Asia (FIN3132 should have either been taken in previous semesters or concurrently) and / or FIN 4120 Equity Research Seminar 1" + }, + { + "moduleCode": "FIN4122", + "title": "Entrepreneurial Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004 Finance\nFIN3101 Corporate Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN4123", + "title": "FinTech Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101 Corporate Finance, FIN3102 Investment Analysis and Portfolio Management, FIN3103 Financial Markets", + "corequisite": "" + }, + { + "moduleCode": "FIN4124", + "title": "FinTech and Financial Data Analytics", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4719 FinTech and Financial Data Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1)FIN3102 or QF3101\nand\n(2)DAO2702 or DSC2008 or CS1010 or CS1010E or CS1010S or CS1010X or CS1101S", + "corequisite": "" + }, + { + "moduleCode": "FIN4125", + "title": "Sustainability and Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN4720 Sustainability and Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101/FIN3701;\nand\nFIN3102/FIN3702 or QF3101", + "corequisite": "" + }, + { + "moduleCode": "FIN4126", + "title": "AI, Blockchain and Quantum Computing", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4721 AI, Blockchain and Quantum Computing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004/FIN2704 Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN4129", + "title": "Advanced Independent Study in Finance", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics." + }, + { + "moduleCode": "FIN4711", + "title": "Research Methods in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4111", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(FIN3701 or RE3807) and FIN3702.", + "corequisite": "" + }, + { + "moduleCode": "FIN4712", + "title": "Personal Finance and Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4113", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3701 or RE3807.", + "corequisite": "" + }, + { + "moduleCode": "FIN4713", + "title": "Advanced Portfolio Management: Securities Analysis & Valuation", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN4115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ACC1701/ACC1701X or EC2204), (FIN3701 or RE3807) and FIN3702.", + "corequisite": "" + }, + { + "moduleCode": "FIN4714", + "title": "Valuation and Mergers & Acquisition", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN4116", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X and (FIN3701 or RE3807).", + "corequisite": "" + }, + { + "moduleCode": "FIN4715", + "title": "Measuring Success in Philanthropy and Impact Investing", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4117", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN4716", + "title": "Equity Research Seminar", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4118", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3701 or RE3807.", + "corequisite": "" + }, + { + "moduleCode": "FIN4717", + "title": "Entrepreneurial Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4122", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2704/FIN2704X and (FIN3701 or RE3807).", + "corequisite": "" + }, + { + "moduleCode": "FIN4718", + "title": "FinTech Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3701 Corporate Finance, FIN3702 Investment Analysis and Portfolio Management, FIN3703 Financial Markets", + "corequisite": "" + }, + { + "moduleCode": "FIN4719", + "title": "FinTech and Financial Data Analytics", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4124 FinTech and Financial Data Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1)FIN3702 or QF3101\nand\n(2)DAO2702 or DSC2008 or CS1010 or CS1010E or CS1010S or CS1010X or CS1101S", + "corequisite": "" + }, + { + "moduleCode": "FIN4720", + "title": "Sustainability and Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "FIN4125 Sustainability and Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3101/FIN3701;\nand\nFIN3102/FIN3702 or QF3101", + "corequisite": "" + }, + { + "moduleCode": "FIN4721", + "title": "AI, Blockchain and Quantum Computing", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4126 AI, Blockchain and Quantum Computing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN2004/FIN2704 Finance", + "corequisite": "" + }, + { + "moduleCode": "FIN4751", + "title": "Advanced Independent Study in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN4752", + "title": "Advanced Independent Study in Finance (2 MC)", + "moduleCredit": 2, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN4761", + "title": "Seminars in Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "FIN4761A", + "title": "SIF: Private Equity", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "FIN4112G", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(FIN3701 or RE3807), FIN3702 and FIN3703.", + "corequisite": "" + }, + { + "moduleCode": "FIN4761B", + "title": "SIF: Investment Banking", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4112H", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(FIN3701 or RE3807), FIN3702 and FIN3703.", + "corequisite": "" + }, + { + "moduleCode": "FIN4761C", + "title": "SIF: Applied Portfolio Management Techniques", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "FIN4112K", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3702", + "corequisite": "" + }, + { + "moduleCode": "FIN4761D", + "title": "SIF: Family Business & Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "FIN4112L", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FIN3701 or RE3807.", + "corequisite": "" + }, + { + "moduleCode": "FIN6001", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN6002", + "title": "Banking and Household Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN6003", + "title": "Asset Pricing and Microstructure Theory", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FIN6004", + "title": "Empirical Asset Pricing and Microstructure", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201B", + "title": "FS: Chinatowns: History and Myth", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The medium of instruction of this module is Chinese. Students must have obtained: \n1) at least a B4 for (a) Higher Chinese at GCE 'O' level, or (b) Chinese Language at GCE 'AO' level (at GCE 'A' level examination); \nOR 2) at least a pass for (a) Chinese at GCE 'A' level, or (b) Higher Chinese at GCE 'A' level;\nOR 3) at least C grade for Chinese Language (H1CL) at GCE 'A' level; \nOR 4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE 'A' level, or (b) Chinese Language and Literature (H3CLL) at GCE 'A' level. \n5) Equivalent qualifications may be accepted.", + "corequisite": "" + }, + { + "moduleCode": "FMA1201D", + "title": "FS: Contemporary Issues in Trade Policy", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201F", + "title": "FS : Representing War", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar Modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201H", + "title": "FS: Australian Culture", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar Modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201J", + "title": "FS: Generations", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar Modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201K", + "title": "FS : The Civilization of Islam in the Malay World", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar Modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201P", + "title": "FS: Meanings and Leanings: Is There a Reason Why?", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1201Q", + "title": "FS: Love Actually? The Social Construction of Romantic Love", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar Modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1202D", + "title": "Taking Risks: Economics, Psychology, and Biology", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "‘A’ grade in A’ Level Mathematics. Students who do not meet the grade requirement may contact the lecturer for an online discussion prior to the first class.", + "corequisite": "" + }, + { + "moduleCode": "FMA1202F", + "title": "FS: Heroism and Society", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1202G", + "title": "FS: Producing Nature, Consuming Nature", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1202N", + "title": "FS: Neuroeconomics: Brain on Money", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1203C", + "title": "FS: Smart Cities", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1203Q", + "title": "FS: Contemplating Theme Parks", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1204C", + "title": "FS: Saving Face", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1204H", + "title": "FS: War Memories: From Anne Frank to Changi Prison", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1205H", + "title": "FS: Decolonization in the 20th Century", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1206H", + "title": "FS: Travel and the Historian", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMA1207H", + "title": "FS: Biopolitics", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Other Freshman Seminar modules", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMD1203", + "title": "Freshmen Seminar: Real Estate Policy Issues", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMD1204", + "title": "Freshmen Seminar: Urban Conservat'n & Sustainable Dev't", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FME1201", + "title": "FS: From Canvas to Engineering Drawing", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FME1202", + "title": "FS: Great Discoveries & Inventions in Sci & Engg", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FME1203", + "title": "FS: Practices of Modern Engineering", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FME1204", + "title": "Catalysis for Sustainable Chemical Technology", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FME1205", + "title": "FS: Energy - How to return to sustainability?", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FME1206", + "title": "FS: Towards a Smart and Sustainable City", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1201P", + "title": "FS: Matter and Interaction", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1201S", + "title": "FS: The Role of Statistics in Scientific Investigation", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1202C", + "title": "FS: The 5 S's of Molecules", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1202M", + "title": "FS: Mathematics in Science, Technology & Society", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1202P", + "title": "FS: Learning through Experiments", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1202S", + "title": "FS: Randomness in Life", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1203B", + "title": "FS: Exploring the Mysteries of Ageing", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1203M", + "title": "FS: The Mathematics of Infinity", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1203P", + "title": "FS: The Beauty of Symmetry", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1203S", + "title": "FS: Randomness in Scientific Thinking", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1204B", + "title": "FS: The Global Impact of Biological Computing", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1204M", + "title": "FS: Appreciation of Basic Results in Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1204P", + "title": "FS: Conceptual Development of Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1204S", + "title": "FS: Fraud, Deception and Data", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1205M", + "title": "FS: Analogy & Intuition in Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1205P", + "title": "FS: Nanoworld and Synchrotron Radiation", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1205S", + "title": "Junk science, good science, and statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1206B", + "title": "FS: Genetic Engineering", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1206M", + "title": "FS: Is Mathematics Science?", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1206P", + "title": "Energy Storage Devices - State of the Art", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1207C", + "title": "Gemstones, Minerals and Rocks", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1207M", + "title": "FS: Mathematics and Computer Science", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1207P", + "title": "The scientific method and how it can fail", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1208B", + "title": "FS: Understanding the Fundamentals of Biotechnology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1208C", + "title": "FS: Carbon Dioxide and Our Environment", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1208M", + "title": "FS: Space, Time and the Universe", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1208P", + "title": "Experimental Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1209C", + "title": "The strange and exciting world of nanoparticles", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1209M", + "title": "Philosophy of Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1209P", + "title": "Science of Solar and Thermal Energy", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1210B", + "title": "From Genetic Engineering to Protein Engineering", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1210C", + "title": "Simple Chemistry for Different Disciplines", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1210M", + "title": "Turning Points in the History of Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1210P", + "title": "Imaging our world", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1211B", + "title": "Protein materials - composition and property", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1211C", + "title": "FS: Science of Color", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1211M", + "title": "Mathematics in Modern Technology", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar. Students staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1211P", + "title": "Understanding the Materials Genome", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1212C", + "title": "Green Chemistry for Sustainable Society", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar. Students staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1212M", + "title": "Uncovering the Magic in Magic Squares and Magic Graphs", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar. Students staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1212P", + "title": "SYC: Simple Yet Complex", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1213P", + "title": "The Little Focused Laser That Could", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar. Students staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1214B", + "title": "Mysteries of Water, Protein Aggregation and Diseases", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1214P", + "title": "Silk: Fibers that make a difference in our world", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar. Students staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1215B", + "title": "Plant Pathogens that cause plants to end up in a bucket", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1218B", + "title": "FS: How come aspirin can relieve my headache?", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1221B", + "title": "Science: The Good, the Bad, the Ugly and the Beautiful", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1222B", + "title": "From Toxins to Therapeutics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1223B", + "title": "The Native Seed Plants of Singapore", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1224B", + "title": "Why do these crystal structures deserve the Nobel Prize?", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1225B", + "title": "Infectious Diseases and Host-Pathogen Interactions", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1226B", + "title": "Battles of the Sexes in the Animal World", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1227B", + "title": "The Science of the Brave New World", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FMS1228B", + "title": "Adapt, Evolve and Survive: The Fungal Story", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA1002", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA1002E", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA1002X", + "title": "Financial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have taken CS1304 or EC3212 or BK1003 or BZ1002 or BH1002 or BZ1002E or BH1002E or FNA1002E are not allowed to take FNA1002X.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA1006", + "title": "Accounting Information Systems", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002", + "corequisite": "" + }, + { + "moduleCode": "FNA2002", + "title": "Managerial Accounting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2002 or BZ3102 or BK2001", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed BK1003 or BZ1002 or BH1002 or FNA1002 or FNA1002X or FNA1002E or BH1002E or CS1304 or EC3212 or EG1422 before they are allowed to take FNA2002.", + "corequisite": "" + }, + { + "moduleCode": "FNA2004", + "title": "Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have taken CS2251 or EC3209 or EC3333 or BK2004 or BZ2004 or BH2004 are not allowed to take FNA2004.\n \n1st Year BSc (BU & RE), all BSc (RE) and Computational Finance are not allowed to take FNA2004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed BK1003 or BZ1002 or BH1002 or FNA1002 or FNA1002X or FNA1002E or BH1002E or EC3212 or EG1422 before they are allowed to take FNA2004.", + "corequisite": "" + }, + { + "moduleCode": "FNA2111", + "title": "Personal Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed BZ3314 or BH2111 are not allowed to take FNA2111.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA3101", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3101 or BZ3301 or BK3100", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3101A", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3101 or BZ3301 or BK3100 or FNA3101 or FNA3101B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3101B", + "title": "Corporate Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3101 or BZ3301 or BK3100 or FNA3101 or FNA3101A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3102", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3102 or BZ3302 or BK3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3102A", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102 or FNA3102B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3102B", + "title": "Investment Analysis and Portfolio Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3102 or BZ3302 or BK3101 or FNA3102 or FNA3102A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3103", + "title": "Financial Markets", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3103 or BZ3303 or BK3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3111", + "title": "Corporate Accounting And Reporting", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3111 or BZ3101 or BK3106", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002", + "corequisite": "" + }, + { + "moduleCode": "FNA3112", + "title": "Managerial Planning And Control", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2002", + "corequisite": "" + }, + { + "moduleCode": "FNA3113", + "title": "Financial Statement Analysis", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3113 or BZ3105 or BK3105", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002 or FNA1002X or BH1002 or BZ1002 or BK1003 or FNA1002E or BH1002E", + "corequisite": "" + }, + { + "moduleCode": "FNA3114", + "title": "Global Financial And Accounting Issues", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002 or FNA1002X", + "corequisite": "" + }, + { + "moduleCode": "FNA3115", + "title": "International Financial Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3115 or BZ3304 or BK3108", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3102", + "corequisite": "" + }, + { + "moduleCode": "FNA3116", + "title": "Options And Futures", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3116 or BZ3312 or BK3109A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3102", + "corequisite": "" + }, + { + "moduleCode": "FNA3117", + "title": "Bank Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3118", + "title": "Financial Risk Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3118 or BZ3305", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3101", + "corequisite": "" + }, + { + "moduleCode": "FNA3119", + "title": "Risk And Insurance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3119 or BZ3311", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004 or BH2004 or BZ2004 or BK2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3120", + "title": "Topics In Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on specific topics offered", + "corequisite": "" + }, + { + "moduleCode": "FNA3120A", + "title": "Topics In Finance:Fixed Income Securities", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3120A or BZ3315", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3102", + "corequisite": "" + }, + { + "moduleCode": "FNA3120X", + "title": "Topics in Finance:selected Topics 1", + "moduleCredit": 4, + "department": "Finance and Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA3120Y", + "title": "Topics in Finance:selected Topics 2", + "moduleCredit": 4, + "department": "Finance and Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FNA3121", + "title": "Assurance and Attestation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002, FNA2002, (Students who are not enrolled in the accounting or accounting-specialization program should seek Deans Office permission to read the module)", + "corequisite": "" + }, + { + "moduleCode": "FNA3122", + "title": "Corporate & Securities Law", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BSP1004", + "corequisite": "" + }, + { + "moduleCode": "FNA3126", + "title": "Valuation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004", + "corequisite": "" + }, + { + "moduleCode": "FNA3127", + "title": "Taxation", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002, BSP1004", + "corequisite": "" + }, + { + "moduleCode": "FNA4111", + "title": "Research Methods In Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3101, FNA3102 and ST1131A/ST1131/ST1232/MA2216/ST2131/ST2334/EE2003/ME2491", + "corequisite": "" + }, + { + "moduleCode": "FNA4112", + "title": "Seminars In Finance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3101 and FNA3102", + "corequisite": "" + }, + { + "moduleCode": "FNA4112D", + "title": "SIF: Private Equity and Governance", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA1002X or FNA1002, FNA3101 and FNA3102 Additional pre-requisites may apply depending on specific modules offered.", + "corequisite": "" + }, + { + "moduleCode": "FNA4112E", + "title": "SIF: Personal Finance and Private Wealth Management", + "moduleCredit": 4, + "department": "Finance", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA3101 and ST1131A", + "corequisite": "" + }, + { + "moduleCode": "FSC4206", + "title": "Advanced Criminal Litigation – Forensics on Trial", + "moduleCredit": 5, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "LL4362V/LL5362V/LL6362V Advanced Criminal Litigation – Forensics on Trial", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1306 Forensic Science", + "corequisite": "" + }, + { + "moduleCode": "FSC5101", + "title": "Survey of Forensic Science", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSC5199", + "title": "Research Project in Forensic Science", + "moduleCredit": 16, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSC5201", + "title": "Advanced CSI Techniques", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSC5202", + "title": "Forensic Defense Science", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSC5203", + "title": "Digital Forensic Investigation", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSC5204", + "title": "Forensic Psychiatry and Psychology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSC5205", + "title": "Forensic Science in Major Cases", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSE1201", + "title": "FS: From Canvas to Engineering Drawing", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSE1202", + "title": "Great discoveries & inventions in the Hist of Sci & Eng", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSE1203", + "title": "Practices of Modern Engineering", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FSP4003", + "title": "Field Service Project", + "moduleCredit": 8, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the nature of the project.", + "corequisite": "" + }, + { + "moduleCode": "FST1101", + "title": "Science and Technology of Foods", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Food Science and Technology Major", + "corequisite": "" + }, + { + "moduleCode": "FST1103", + "title": "Fundamentals of Food Engineering", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM1161, CM2161", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101", + "corequisite": "" + }, + { + "moduleCode": "FST2102A", + "title": "Chemistry of Food Components", + "moduleCredit": 6, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CM1191 and FST1101", + "corequisite": "" + }, + { + "moduleCode": "FST2102B", + "title": "Chemistry of Food Components", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "FST2102A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101 and CM1121 or CM1501", + "corequisite": "" + }, + { + "moduleCode": "FST2106", + "title": "Post Harvest Food Processing", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101 and (LSM1101 or LSM1106)", + "corequisite": "" + }, + { + "moduleCode": "FST2107", + "title": "Food Analysis and Lab", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CM2192, CM2192A, FST2102A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101 and CM1191", + "corequisite": "" + }, + { + "moduleCode": "FST2108", + "title": "Food Safety Assurance", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "FST3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST2102B or (LSM1103 and LSM2103) or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "FST2201", + "title": "Introduction to Human Nutrition", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1101 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "FST2202", + "title": "Food Commodities in Costa Rica", + "moduleCredit": 6, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST2203", + "title": "Food Commodities in Indonesia", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "FST2202 Food Commodities in Costa Rica", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "O-Level Chemistry and O-Level Biology", + "corequisite": "" + }, + { + "moduleCode": "FST2204", + "title": "Seafood Supply Chains in Japan and Singapore", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST2288", + "title": "Basic UROPS in Food Science & Technology I", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "FST1101 and Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "FST2289", + "title": "Basic UROPS in Food Science & Technology II", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101 and Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "FST3101", + "title": "Food Microbiology & Fermentation", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101, FST2102B", + "corequisite": "" + }, + { + "moduleCode": "FST3102", + "title": "Food Safety Assurance", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(FST2102A) or (LSM1103 and LSM2103)", + "corequisite": "" + }, + { + "moduleCode": "FST3103", + "title": "Advanced Food Engineering", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST1101 and FST1103", + "corequisite": "" + }, + { + "moduleCode": "FST3104", + "title": "Food Sensory, Innovation and Packaging", + "moduleCredit": 6, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "FST2102A and FST2106", + "corequisite": "" + }, + { + "moduleCode": "FST3105", + "title": "Food Product Development and Packaging", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "FST3104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST2102B and FST2107 and FST2108", + "corequisite": "" + }, + { + "moduleCode": "FST3106", + "title": "Sensory and Flavour Science", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "FST3104, FST4101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST2102B", + "corequisite": "" + }, + { + "moduleCode": "FST3181", + "title": "Professional Placement", + "moduleCredit": 12, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Food Science & Technology Major", + "corequisite": "" + }, + { + "moduleCode": "FST3201", + "title": "Independent Study (Food Science & Tech)", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Food Science & Technology Major", + "corequisite": "" + }, + { + "moduleCode": "FST3202", + "title": "Nutrition and Disease Prevention", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST2201", + "corequisite": "" + }, + { + "moduleCode": "FST3203", + "title": "Vitamins & Minerals in Health & Diseases", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2101. For those without LSM2101, pass in GCE 'A' level or H2 equivalent Biology and Chemistry by permission.", + "corequisite": "" + }, + { + "moduleCode": "FST3288", + "title": "Advanced UROPS in Food Science & Technology I", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "By permission.", + "corequisite": "" + }, + { + "moduleCode": "FST3289", + "title": "Advanced UROPS in Food Science & Technology II", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "FST3288, and by permission.", + "corequisite": "" + }, + { + "moduleCode": "FST3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Food Science and Technology as first major and have completed a minimum of 32 MCs in Food Science and Technology major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "FST3311", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Food Science and Technology as first major and have completed a minimum of 32 MCs in Food Science and Technology major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "FST4101", + "title": "Flavour Science", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3104", + "corequisite": "" + }, + { + "moduleCode": "FST4102", + "title": "Advanced Food Processing Technology", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3103", + "corequisite": "" + }, + { + "moduleCode": "FST4103", + "title": "Food Colloids and Components Science", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3105 and FST3106", + "corequisite": "" + }, + { + "moduleCode": "FST4199", + "title": "Honours Project in Food Science & Tech", + "moduleCredit": 16, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "For Cohort 2011 and before- At least an overall CAP of 3.50, on fulfillment of 100MC or more; and major requirements under the B.Appl.Sc. programme. Food Science and Technology Major. \n\nFor Cohort 2012 and after- At least an overall CAP of 3.20, on fulfillment of 100MC or more; and major requirements under the B.Appl.Sc. (for Cohort 2012 and 2013) /B.Sc. (for Cohort 2014 and after) programme. Food Science and Technology Major.", + "corequisite": "" + }, + { + "moduleCode": "FST4201", + "title": "Current Topics ( Food Science & Tech )", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3102 and FST3104", + "corequisite": "" + }, + { + "moduleCode": "FST4202", + "title": "Nutritional Biochemistry", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3202 (or equivalent module) and either LSM2101 or LSM2211", + "corequisite": "" + }, + { + "moduleCode": "FST4203", + "title": "Food Forensics", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3101 and FST3102", + "corequisite": "" + }, + { + "moduleCode": "FST4299", + "title": "Applied Project in FST", + "moduleCredit": 16, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "FST4199", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for the specific major", + "corequisite": "" + }, + { + "moduleCode": "FST5198", + "title": "Advanced Food Science and Nutrition Seminar", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5199", + "title": "MSc research project", + "moduleCredit": 12, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5201", + "title": "Rheology and Textural Properties of Biomaterials", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "FST4204", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5202", + "title": "Advanced Food Fermentation", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3101 or LSM3232 or by permission", + "corequisite": "" + }, + { + "moduleCode": "FST5202A", + "title": "Modern Food Fermentation", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST 3101 Food Enzymology and Fermentation, or LSM 3232 Microbiology, or by permission", + "corequisite": "" + }, + { + "moduleCode": "FST5203", + "title": "Advanced Food Microbiology and Safety", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3101 or LSM3232 or by permission”", + "corequisite": "" + }, + { + "moduleCode": "FST5203A", + "title": "Advanced Food Microbiological Analysis and Food Safety", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST3101 or LSM3232 or by permission", + "corequisite": "" + }, + { + "moduleCode": "FST5204", + "title": "Evidence Based Functional Foods", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FST2102/2102A or CM2121, or by permission", + "corequisite": "" + }, + { + "moduleCode": "FST5205", + "title": "Frontier of Food Processing and Engineering", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5205A", + "title": "Frontiers of Food Processing and Engineering", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5225", + "title": "Advanced Current Topics in Food Science I", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By the lecturer’s approval", + "corequisite": "By the lecturer’s approval" + }, + { + "moduleCode": "FST5226", + "title": "Advanced Current Topics in Food Science II", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By lecturer’s approval", + "corequisite": "" + }, + { + "moduleCode": "FST5227", + "title": "Advanced Current Topics in Food Science III", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By lecturer’s approval", + "corequisite": "" + }, + { + "moduleCode": "FST5301", + "title": "Evidence Based Functional Foods", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "FST5204", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "FST5301A", + "title": "Evidence-based Functional Foods", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5302", + "title": "Food, Nutrition and Health", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "FST2201 Introduction to Human Nutrition", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5303", + "title": "Modern Human Nutrition", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "FST5303A", + "title": "Modern Human Nutrition", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE1101E", + "title": "Geographical Journeys: Exploring World Environments", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2101", + "title": "Methods and Practices in Geography", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GE2225", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2202", + "title": "Economy & Space", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2204", + "title": "Cities in Transition", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2206", + "title": "Geographies of Life and Death", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2215", + "title": "Introduction to GIS", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2218", + "title": "Leisure, Recreation and Tourism", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2220", + "title": "Terrestrial and Coastal Environments", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2221", + "title": "Nature and Society", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2222", + "title": "Politics and Space", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2226", + "title": "Southeast Asia", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2227", + "title": "Cartography and Visualisation", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2228", + "title": "Weather and Climate", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GE2219", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2229", + "title": "Water and the Environment", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GE2219", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2230", + "title": "Energy Futures: Environment and Sustainability", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2231", + "title": "Introduction to Social and Cultural Geographies", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2233", + "title": "Geospatial Analytics for Biodiversity Conservation", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE2880", + "title": "Topics in Geography I", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3201", + "title": "The Service Economy", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3204", + "title": "Cities and Regions: Planning for Change", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3206", + "title": "Gender, Space & Place", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3210", + "title": "Natural Resources: Policy and Practice", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3216", + "title": "Applications of GIS & Remote Sensing", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE2215", + "corequisite": "" + }, + { + "moduleCode": "GE3219", + "title": "Globalisation and the Asian Cities", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3221", + "title": "Ecological Systems", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3223", + "title": "Environmental Change in the Tropics", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE2220: Terrestrial and Coastal Environments; or GE2228: Atmospheric Environments or GE2229: Water and Environment.", + "corequisite": "" + }, + { + "moduleCode": "GE3224", + "title": "Cultural Landscapes", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3226", + "title": "Tourism Development", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3227", + "title": "Urban Climates", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE2228 or permission from lecturer", + "corequisite": "" + }, + { + "moduleCode": "GE3230A", + "title": "Field Studies in Geography: SE Asia", + "moduleCredit": 8, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 3 + ], + "preclusion": "GE3230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3231", + "title": "Natural Hazards", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3234", + "title": "Historical Landscapes and Heritage", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3235", + "title": "Geographies of Development", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3236", + "title": "Transport and Communications", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3237", + "title": "Geographies of Migration", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3238", + "title": "GIS Design and Practices", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE2215", + "corequisite": "" + }, + { + "moduleCode": "GE3240", + "title": "Geographical Research: Developing Ideas", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3241", + "title": "Geographies of Social Life", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GE2224", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3242", + "title": "Sediments and Sedimentary Basins", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3243", + "title": "Applied Petroleum Exploration", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE3880A Topics in Petroleum Geoscience\nor\nGE3244 Fundamentals in Petroleum Geoscience (This is the proposed regularised module code of the existing GE3880A Topics in Petroleum Geoscience)", + "corequisite": "" + }, + { + "moduleCode": "GE3244", + "title": "Fundamentals of Petroleum Exploration", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GE3880A Topics in Petroleum Geoscience", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3245", + "title": "Conservation & Urban Tropical Ecology in SE Asia", + "moduleCredit": 6, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "None (Preference for enrolment given to BES and Geography students, 5 slots set aside for both combined)", + "corequisite": "" + }, + { + "moduleCode": "GE3246", + "title": "Environmental Pollution", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3247", + "title": "Worlds of Work", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE3550A", + "title": "GIS Internship Module", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GE3550B and any other XX3550 module", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The GISIM is for Geography majors who are taking/ intend to declare GIS minor, subject to the specific requirements of the hiring company or government agency.\n\nStudents must have completed GE2215 Introduction to Geographic Information Systems, before taking this module. Some companies may also require students to pass GE2227 and/ or GE3238.", + "corequisite": "" + }, + { + "moduleCode": "GE3550B", + "title": "Geography Internship", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GE3550A and any other XX3550 module", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should:\n1) have completed a minimum of 24 MCs in Geography; and\n2) have declared Geography as their major", + "corequisite": "" + }, + { + "moduleCode": "GE3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "GE3880", + "title": "Topics in Geography II", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE4101", + "title": "Development of Geographic Thought", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must have completed at least 80 MCs and for GE majors only.", + "corequisite": "" + }, + { + "moduleCode": "GE4202", + "title": "Remaking the Global Economy", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GE3880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE, or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track. \n\n(Global Studies students) Must have read and passed GE1101E and at least one of the following modules: GE2202, GE3201 and GE3238. Completed at least 80 MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE, or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4203", + "title": "International Transport Systems", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE, or 28 MCs with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4204", + "title": "Urban Space:Critical Perspectives", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track. \n\n(Global Studies students)\nMust have read and passed GE1101E and at least one of the following modules: GE2204, GE3204 and GE3219. Completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4207", + "title": "Coastal Management", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. Must have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227.\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.\n\n(Global Studies students)\nMust have read and passed GE1101E and at least one of the following modules:\nGE2220, GE2228, GE2229, GE3221, GE3223 and GE3231 and completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. Must have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227.\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4211", + "title": "Advanced Hydrology and Water Resources Management", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. Must have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227.\n\n(Global Studies students).\nMust have read and passed GE1101E and at least one of the following modules: GE2220, GE2228, GE2229, and GE3221 and completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours Track.\n\n(BES students from both specialisations).\nMust have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227. Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. Must have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227.\n\n(BES students from both specialisations).\nMust have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227. Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4212", + "title": "Environmental Modelling", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE with a minimum CAP of 3.20 or be on the Honours track. Must have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227.\n\n(BES students from both specialisations)\nMust have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227. Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.\n\n(Global Studies students)\nMust have read and passed GE1101E and at least one of the following modules: GE2220, GE2228, GE2229, GE3221, GE3223 and GE3227. Completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE with a minimum CAP of 3.20 or be on the Honours track. Must have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227.\n\n(BES students from both specialisations)\nMust have read and passed GE1101E or at least one of the following modules: GE2219, GE2220, GE2228, GE2229, GE3221 and GE3227. Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4213", + "title": "Cultural Geographies", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE, or 28 MCs in SN with a minimum CAP of 3.20 or be on the Honours track.\n\n(Global Studies students) Must have read and passed GE1101E and at least one of the following modules: GE2206, GE3206 and GE3237. Completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE, or 28 MCs in SN with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4214", + "title": "Remote Sensing of Environment", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To read and pass GE2215. Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations)\nTo read and pass GE2215. Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4217", + "title": "Political Geographies: Space and Power", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(Global Studies students) Must have read and passed GE1101E and GE2222. Completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4218", + "title": "Interpreting Tourism Spaces and Cultures", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(Global Studies students). Completed 80MCs, including 28MCs in GE or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4219", + "title": "Development and Environment in Southeast Asia", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards: Completed 80 MCs, including 28 MCs in GE, or 28 MCs in MS, or 28 MCs in SE with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2012 onwards: (BES students from both specialisations). Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4220", + "title": "Field Investigation in Physical Geography", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations)\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4221", + "title": "Field Investigation in Human Geography", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations). \nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4222", + "title": "Advanced Geomorphology", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations)\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4223", + "title": "Development of Geographic Thought", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GE4101A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations). \nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4224", + "title": "Applied Biogeography", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4225", + "title": "Young People and Children: Global Perspectives", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. \n\n(Global Studies students) \nCompleted 80MCs, including 28MCs in GE or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4226", + "title": "Mobile Spaces: Making Social Worlds", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. \n\n(Global Studies students) Completed 80MCs, including 28MCs in GE or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4227", + "title": "Climate Change: Processes, Impact and Responses", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4228", + "title": "Gender and the City", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE with a minimum CAP of 3.20 or be on the Honours track.\nGE3206.", + "corequisite": "" + }, + { + "moduleCode": "GE4229", + "title": "Earth Systems Science", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4230", + "title": "Greater China", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track. \n\n(Global Studies students) Completed 80MCs, including 28 MCs in GE or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed at least 80MCs, including 28MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4231", + "title": "Urban and Regional Economies", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GE4232", + "title": "Global Political Ecologies", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE with a minimum CAP of 3.20 or be on the Honours track\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4233", + "title": "Geography in the Contemporary World", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GE4102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\n(Global Studies).\nMust have read and passed GE1101E and at least one of the following modules: GE2202, GE2206, GE2220, GE2228, GE2229, GE3201, GE3206, GE3221, GE3223, GE3227, GE3231 and GE3237, Completed at least 80MCs, including 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\n(BES students from both specialisations).\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GE4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 and before\nTo read and pass GE3240. Completed 110 MCs including 60 MCs of GE requirements with a minimum CAP of 3.50.\n\nCohort 2013-2015\nTo read and pass GE3240. Completed 110 MCs including 60 MCs of GE requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards\nTo read and pass GE3240. Completed 110 MCs including 44 MCs of GE requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2012 onwards: (BES NVG students)\nTo read and pass GE3240. Completed 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GE4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in GE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in GE, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "GE4880", + "title": "Topics in Geography III", + "moduleCredit": 5, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards:\nCompleted 80 MCs, including 28 MCs in GE, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2012 onwards: (BES students from both specialisations)\nCompleted 80 MCs of NUS modules before they can read any level-4000 GE modules. Do not need to complete 28 MCs of GE modules before they can read any level-4000 GE modules. Do not need a minimum CAP of 3.20 before they can read any level-4000 GE modules.", + "corequisite": "" + }, + { + "moduleCode": "GE5211", + "title": "Dynamic Environments", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5212", + "title": "Cities and Global Connections", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5213", + "title": "Tourism Impacts and Management", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5214", + "title": "Landscapes of Southeast Asia", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SE5221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5215", + "title": "The Politics of Environment in Se Asia", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SE5294", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5216", + "title": "Geography and Social Theory", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5217", + "title": "Research Methods in Environmental Sciences", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GE6215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5218", + "title": "Research Methods in Human Geography", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5219", + "title": "Spatial Programming", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE5223 Introduction to Applied GIS or with Lecturer’s consent", + "corequisite": "" + }, + { + "moduleCode": "GE5223", + "title": "Introduction to Applied GIS", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "Students with prior GIS training should consult with the lecturer in charge to decide if the module is suitable.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5225", + "title": "Thesis Planning and Implementation", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5226", + "title": "GIS Applications", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5227", + "title": "Internet GIS", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5228", + "title": "Spatial Big Data and Analytics", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE5880", + "title": "Topics in Geography I", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6211", + "title": "Spatial Data Handling", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6212", + "title": "Mapping Global Economic Change", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6213", + "title": "Tourism Geographies", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6221", + "title": "Discussing Human‐Environment Interactions", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6222", + "title": "Transnationalism and Society: Comparative Spaces", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6223", + "title": "Navigating the Boundaries Between Science and Policy", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6224", + "title": "Political Geography", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6225", + "title": "GIS Research Thesis", + "moduleCredit": 12, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE5223, GE5219, GE6211, GE5225", + "corequisite": "" + }, + { + "moduleCode": "GE6226", + "title": "GIS Research Project", + "moduleCredit": 8, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GE5223, GE5219, GE6211, GE5226", + "corequisite": "" + }, + { + "moduleCode": "GE6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GE6880", + "title": "Topics in Geography II", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1000", + "title": "Exp Cultural Diversty In ASEAN", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEK2014", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1001", + "title": "Globalisation and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM1036", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1002", + "title": "Economic Issues in Dev World", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM1018K, GEK1018", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1004", + "title": "Chinese Heritage: Hist & Lit", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK1007", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1005", + "title": "Crime Fiction in Eng & Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1021", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1006", + "title": "Chinese Music, Language and Literature (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1053", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1007", + "title": "Asian Cinema: The Silent Era", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEM1049", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1008", + "title": "Nations & Nat'lisms in S Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1035", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1009", + "title": "Framing Bollywood: Unpacking The Magic", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1050", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1010", + "title": "Beasts, People and Wild Environments in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM1913", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1011", + "title": "Film and History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2243 and GEM2005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1013", + "title": "Pirates, Oceans and the Maritime World", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK2049", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1014", + "title": "Samurai, Geisha, Yakuza as Self or Other", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK2022", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1015", + "title": "Cultural Borrowing: Japan and China", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK2042", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1016", + "title": "Understanding Consumption", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEM1047", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1017", + "title": "Computation & Machine: Ancient to Modern", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEK1536", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1018", + "title": "A Brief History of Science", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1539", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1019", + "title": "Food & Health", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1529 and GEM1908", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1020", + "title": "Our Atmosphere: A Chemical Perspective", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "GEK1535", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1021", + "title": "Rethinking Technology, Orgns And People", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEK1013", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1022", + "title": "Geopolitics:Geographies of War & Peace", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1022", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1023", + "title": "Exploring Chinese Cinema: Shanghai‐Hong Kong‐Singapore", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK2047, CH2297", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1024", + "title": "International Relations of Asia", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEM1048", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1025", + "title": "Global Environmental Issues", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "GEK1522", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1025T", + "title": "Global Environmental Issues", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2, + 3 + ], + "preclusion": "GEK1522, GEK1522T, GEH1025", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1026", + "title": "Drugs and Society", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK2506", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1027", + "title": "Einstein's Universe & Quantum Weirdness", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1508", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1028", + "title": "The Emerging Nanoworld", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1509", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1029", + "title": "Great Ideas in Contemporary Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEK1510", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1030", + "title": "Science of Music", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1519", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1031", + "title": "Understanding the Universe", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1520", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1032", + "title": "Modern Technology in Medicine and Health", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1540", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1033", + "title": "How the Ocean Works", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1548,GEK1548FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1034", + "title": "Clean Energy and Storage", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEM1535", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1035", + "title": "Phy'cal Qns from Everyday Life", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEM2507", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1036", + "title": "Living with Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1505", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1039", + "title": "The Art of Rituals and Recreation", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEM2022, MUL3203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1040", + "title": "Exploration in Musical Production", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "GEK1065", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1041", + "title": "Engaging the natural environment in ASEAN", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1066", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1042", + "title": "The Search for Life on Other Worlds", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "GEK1537", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1043", + "title": "Microbes which Changed Human History", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "GEK1534", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1044", + "title": "Understanding Globalisation", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1041", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1045", + "title": "World Religions", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1045", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1046", + "title": "Visual images", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1056", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1047", + "title": "Social and Cultural Studies through Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1054", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1048", + "title": "Technology and Artistic Innovators", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEM2021, MUL3202", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1049", + "title": "Public Health in Action", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1900", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1050", + "title": "Plants and Society", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1538", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1051", + "title": "Narrative", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1049", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1052", + "title": "Standard English Across Cultures", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1059", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1053", + "title": "Film Art and Human Concerns", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK2020", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1054", + "title": "Names as Markers of Socio-cultural Identity", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEM1031", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1055", + "title": "Religion and Film", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM1033", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1056", + "title": "Cultural Diversity in the Contemporary World", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1057", + "title": "Materials: The Enabling Substance of Civilization", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1058", + "title": "The Theatre Experience", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1055", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1059", + "title": "Living in the Nuclear World", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1060", + "title": "Social History of the Piano", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1061", + "title": "Representation and Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1062", + "title": "Ghosts and Spirits in Society and Culture", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1063", + "title": "Understanding Body, Mind and Culture through Sport", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1064", + "title": "Imagining War", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1065", + "title": "Art in Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1066", + "title": "Art Movements and -isms", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1067", + "title": "Superhero Entertainments", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1068", + "title": "The Life Aquatic: Machines and the Making of the Ocean", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1069", + "title": "Art in Asia: Through Media, Style, Space and Time", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1070", + "title": "Traditional Chinese Knowledge of Health and Well-being", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1071", + "title": "Religion in Malay-Indonesian Literary Worlds", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1072", + "title": "Culture in Action", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1073", + "title": "The Art of Chinese Poetry: Past and Present", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1074", + "title": "Luck", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1075", + "title": "Life, Disrupted: The Sharing Revolution", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1076", + "title": "Worlds of Football", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1077", + "title": "Metropolis: The City in World History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1078", + "title": "Heroes of China", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEH1079", + "title": "Whatever it takes? Making War on Civilians", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1000", + "title": "An Introduction to Literary Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN1101E. Students who are majoring in EN, or intend to major in EN should not take GEK1000.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Exempted from NUS Qualifying English Test, or passed NUS Qualifying\nEnglish Test, or exempted from further CELC Remedial English modules.", + "corequisite": "" + }, + { + "moduleCode": "GEK1001", + "title": "Geographical Journeys: Exploring World Environments", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GE1101E. Not for students majoring or intend to major in GE.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1002", + "title": "Introduction to Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "JS1101E. Students majoring in JS are precluded from taking\nthis module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1003", + "title": "Introduction to Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS1101, GEM1003K, PS1101E. Not for students majoring in PS", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1005", + "title": "Cultural Diversity in the Contemporary World", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1056", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1007", + "title": "Chinese Heritage: History and Literature", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1004", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1008", + "title": "Southeast Asia: A Changing Region", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SE1101E, SSA1202, SS1203SE and GEM1008K. Not for students majoring, or intend to major in SE.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1010", + "title": "Property Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Not for Real Estate Students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1010T", + "title": "Property Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "Not for Real Estate students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1011", + "title": "The Nature of Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL1101E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Exempted from NUS Qualifying English Test, or passed NUS Qualifying English Test, or exempted from further CELC Remedial English modules.", + "corequisite": "" + }, + { + "moduleCode": "GEK1012", + "title": "Contemporary Social Issues in Singapore", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1016", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1013", + "title": "Rethinking Technology, Orgns And People", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEH1021", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1014", + "title": "Understanding Emotions In Interactive Processes", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have read or are reading HR2002 or HR2101A or HR3111A or HR2102 are not allowed to take GEK1014.\n\n- All SoC students matriculated in 1999 or earlier.\n\n- All Science students matriculated in 2000 or earlier\n\n- All FASS students matriculated in 2001 or earlier.\n\n- All Engineering students.\n\n- All SDE students except Industrial Design students from 2002-cohort onwards.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have read or are reading HR2002 or HR2101A or HR3111A or HR2102 are not allowed to take GEK1014.\n\n- All SoC students matriculated in 1999 or earlier.\n\n- All Science students matriculated in 2000 or earlier\n\n- All FASS students matriculated in 2001 or earlier.\n\n- All Engineering students.\n\n- All SDE students except Industrial Design students from 2002-cohort onwards.", + "corequisite": "" + }, + { + "moduleCode": "GEK1018", + "title": "Economic Issues in the Developing World", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1020", + "title": "Ethics at Work: Rhyme, Reason and Reality", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GET1000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1021", + "title": "Crime Fiction in English & Chinese", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1022", + "title": "Geopolitics:Geographies of War & Peace", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1022", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1026", + "title": "The Horror of the Other", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1029", + "title": "Managing Change: Power & Paradox", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BZ3503 - Managing Change Processes", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1029T", + "title": "Managing Change: Power & Paradox", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "MNO3313A", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1030", + "title": "Service Work: Winning Hearts & Minds", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1035", + "title": "Nations & Nationalisms in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1008", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1037", + "title": "Seeing the World Through Maps", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1039", + "title": "Understanding Careers", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1041", + "title": "Understanding Globalisation", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1044", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1042", + "title": "Intellectual Property In Cyberspace", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GET1007", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1045", + "title": "World Religions", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1045", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1046", + "title": "Introduction to Cultural Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1047", + "title": "Organisational Power And Culture", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1048", + "title": "Maverick or Mahatma? Gandhi’s Life & Legacy", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1009", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1049", + "title": "Narrative", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1051", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1050", + "title": "Space And Health", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1053", + "title": "Chinese Music, Language and Literature (in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1006", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1054", + "title": "Social and Cultural Studies through Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEH1047", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1055", + "title": "The Theatre Experience", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1058", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1056", + "title": "Visual images", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1046", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1059", + "title": "Standard English Across Cultures", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1052", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1062", + "title": "Bridging East and West: Exploring Chinese Communication", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1064", + "title": "Psychology in Everyday Life", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PLB1201 and PL1101E.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1065", + "title": "Exploration in Musical Production", + "moduleCredit": 4, + "department": "Office of Student Affairs", + "faculty": "NUS", + "semester": [], + "preclusion": "GEH1040", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1066", + "title": "Engaging the natural environment in ASEAN", + "moduleCredit": 4, + "department": "Office of Student Affairs", + "faculty": "NUS", + "semester": [], + "preclusion": "GEH1041", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1067", + "title": "Life, the Universe, and Everything", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH1102E, GET1029", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1500", + "title": "Inside Your Personal Computer", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "To preclude all FoE, CEG and SoC students.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1501", + "title": "Information Technology And Us", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "To preclude all Facultyof Engineering, Computer Engineering (CEG) & School of Computing students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1505", + "title": "Living with Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEH1036.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1508", + "title": "Einstein's Universe & Quantum Weirdness", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "PC1325, GEH1027", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1509", + "title": "The Emerging Nanoworld", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEH1028", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1510", + "title": "Great Ideas in Contemporary Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1029", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1512", + "title": "Understanding How The Internet Works", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "To preclude Electrical Engineering, Computer Engineering (CPE & CEG) and School of Computing students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1513", + "title": "Wireless Communications - Past, Present And Future", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "To preclude Electrical Engineering, Computer Engineering and School of Computing students (except EE1, CPE1, CEG1, CEC1, COM1) and students who have read IT2001.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "basic knowledge of mathematics and physics at the GCE O-level.", + "corequisite": "" + }, + { + "moduleCode": "GEK1514", + "title": "Microelectronics Revolution - From Sand To IC", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "Students who have read EE2021 or EE3431C are not allowed to read this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1517", + "title": "Mathematical Thinking", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "GET1017", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1519", + "title": "Science of Music", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "PC1327, GEH1030", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1520", + "title": "Understanding the Universe", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1031. Students majoring in Physics are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1521", + "title": "Physics in the Life Sciences", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GET1013. Students majoring in Physics are not allowed to take this module", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1522", + "title": "Global Environmental Issues", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "GEH1025", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1522T", + "title": "Global Environmental Issues", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2, + 3 + ], + "preclusion": "GEK1522, GEH1025, GEH1025T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1523T", + "title": "Innovativeness In Engineering Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1529", + "title": "Food & Health", + "moduleCredit": 4, + "department": "Food Science and Technology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEH1019 and GEM1908", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1531", + "title": "Cyber Security", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GET1004", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1534", + "title": "Microbes which Changed Human History", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "GEH1043", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1535", + "title": "Our Atmosphere: A Chemical Perspective", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1020", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Available to all students", + "corequisite": "" + }, + { + "moduleCode": "GEK1536", + "title": "Computation & Machine: Ancient to Modern", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1017", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1537", + "title": "The Search for Life on Other Worlds", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "GEH1042", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1539", + "title": "A Brief History of Science", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEH1018", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1540", + "title": "Modern Technology in Medicine and Health", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEH1032", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1544", + "title": "The Mathematics of Games", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GET1018.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1547", + "title": "The Art of Science, the Science of Art", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GET1014", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1548", + "title": "How the Ocean Works", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEH1033", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK1549", + "title": "Critical Thinking And Writing", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "1. IEM1201%, UTW1001%, ES1531, GEK1549 and GET1021. \n2. U-town students cannot select ES2531.\n3. ES1601 and ES1601A Professional and Academic Communication.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. Students who are required to take ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass the modules before they are allowed to read this module. \n2. Students who matriculated in AY2014/15 and AY2015/16 are to read the cross-listed modules, GEK1549 and GET1021, respectively.", + "corequisite": "" + }, + { + "moduleCode": "GEK1900", + "title": "Public Health in Action", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "GEH1049", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2000", + "title": "The U.S.: From Settlement to Superpower", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS2237, HY2237. GEK2000 is not for students majoring in HY.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2001", + "title": "Changing Landscapes of Singapore", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SSA2202, GES1003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2002", + "title": "Philosophy of Art", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2003", + "title": "Government and Politics of Singapore", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS1102, GEM2003K, SS2209PS, PS2101B, SSA2209, PS2101, PS2249. Not for students majoring in PS.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2005", + "title": "Urban Planning in Singapore", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Not for Real Estate students and first year students and GES1026", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2008", + "title": "Environmental History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2235. GEK2008 is not for students majoring in HY.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2010", + "title": "Foreign Policy and Diplomacy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2209, GEM2010K, PS2209B, PS2239. Not for students majoring in PS", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2012", + "title": "Public Administration in Asia", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2206, GEM2012K, PS2211B, PS2241. Not for students majoring in PS", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2013", + "title": "Real Estate Finance", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Not for Real Estate students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2014", + "title": "Exploring Cultural Diversity In ASEAN", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEH1000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2018", + "title": "Identity and Western Literature", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2020", + "title": "Film Art and Human Concerns", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1053", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2022", + "title": "Samurai, Geisha, Yakuza as Self or Other", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1014", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2023", + "title": "Technology For Better Social Habitats", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2024", + "title": "Political Ideologies", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2233", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2025", + "title": "Politics of the Middle East", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS2255", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2027", + "title": "Introduction to Indian Thought", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2204, SN2273", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2028", + "title": "Founders of Modern Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2206", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2029", + "title": "Applied Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2208", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2030", + "title": "Introduction to Continental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2212, EU2214", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2031", + "title": "Environmental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2216, UPI2205", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2033", + "title": "Business Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2218", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2034", + "title": "Social Philosophy and Policy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2220", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2035", + "title": "Medical Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2208, PH2221", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2036", + "title": "Greek Philosophy (Socrates and Plato)", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2222, PH3209", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2037", + "title": "Introduction to the Philosophy of Technology", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2223", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2038", + "title": "Classical Chinese Philosophy I", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2301, PH2205", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2039", + "title": "Chinese Philosophical Traditions I", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2302", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2040", + "title": "Philosophy and Film", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2224, PH2880A", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2041", + "title": "Science Fiction and Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2225, GET1025", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2042", + "title": "Cultural Borrowing: Japan and China", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1015", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2043", + "title": "Politics on Screen", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS2256", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2044", + "title": "Reading Visual Images", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "AR2225", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2045", + "title": "History & Theory Of Modern Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2047", + "title": "Exploring Chinese Cinema: Shanghai-Hong Kong-Singapore", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CH2297, GEH1023", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2048", + "title": "Effective Reasoning", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2111, GET1026", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2049", + "title": "Pirates, Oceans and the Maritime World", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEH1013", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2050", + "title": "Computers and the Humanities", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1030", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2501", + "title": "Understanding your Medications", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "Preclusion(s): Medical, Dental, Pharmacy, Nursing and all 1st year students are precluded. Life Science students who have taken LSM3211 are also precluded. Life Science students who have taken GEK2501 will not be allowed to do LSM3211", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open only to 2nd, 3rd and 4th year students", + "corequisite": "" + }, + { + "moduleCode": "GEK2502", + "title": "Environmental Science and Technology", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2503", + "title": "Remote Sensing for Earth Observation", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2505", + "title": "Introductory Biomedical Engineering", + "moduleCredit": 2, + "department": "Biomedical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "For students from other departments except Division of Bioengineering and students doing Minor in Bioengineering", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2506", + "title": "Drugs and Society", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1026", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK2508", + "title": "Sky and Telescopes", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-Level Physics or\nUnderstanding the Universe (GEK1520/PC1322) or\nEinstein’s Universe & Quantum Weirdness (GEK1508/PC1325)", + "corequisite": "" + }, + { + "moduleCode": "GEK3005", + "title": "Politics and the Visual", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS3260", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK3006", + "title": "Human Rights in International Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS3252", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEK3007", + "title": "Politics, Music and Society", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS3266", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1003", + "title": "Introduction to Theatre and Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "TS1101E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Exempted from NUS Qualifying English Test, or passed NUS\nQualifying English Test, or exempted from further CELC Remedial English modules.", + "corequisite": "" + }, + { + "moduleCode": "GEM1004", + "title": "Reason and Persuasion", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1027", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1006", + "title": "Study of Movement Aesthetics", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1008", + "title": "Evaluating Academic Arguments", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "GET1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1010K", + "title": "Property Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1016K", + "title": "History of Modern Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1020K", + "title": "Ethics At Work : Rhyme,reason & Reality", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1029", + "title": "Patrons of the Arts", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "MUL2102, GET1019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1030", + "title": "Art and Identity", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "MUL3201, GEH1038", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1031", + "title": "Names as Markers of Socio-cultural Identity", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1054", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1033", + "title": "Religion and Film", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1055", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1035", + "title": "Jr Sem: Generation Y: Transitions to Adulthood", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC1402", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1036", + "title": "Globalisation and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1046", + "title": "Home", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1047", + "title": "Understanding Consumption", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1016", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1048", + "title": "International Relations of Asia", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1024", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1049", + "title": "Asian Cinema: The Silent Era", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1007", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1050", + "title": "Framing Bollywood: Unpacking The Magic", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1009", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1051", + "title": "Ethnicity and Nation-Building: Singapore and Malaysia", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1008", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1052", + "title": "Understanding the Changing Global Economic Landscape", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GET1016", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1052T", + "title": "Understanding The Changing Global Economic Landscape", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "GEM1052, GET1016, GET1016T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1500K", + "title": "Inside Your Personal Computer", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1505A", + "title": "Engineering by Design - Devices and Systems", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1505B", + "title": "Engineering by Design - Electrical Systems", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1505C", + "title": "Engineering by Design - Forms & Structures", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1505D", + "title": "Engineering by Design - Biomimetic Systems", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1535", + "title": "Clean Energy and Storage", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEH1034", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1536", + "title": "Darwin and Evolution", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1902B Junior Seminar: The Darwinian Revolution\nGET1020", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1537", + "title": "Nanotechnology-Smart Phone and Beyond", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1902", + "title": "Junior Seminar", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1902B", + "title": "Junior Seminar: The Darwinian Revolution", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11% or GEM1536 or GET1020", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1902M", + "title": "Junior Seminar: On Blindness", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1904", + "title": "Jr Sem: Hidden Communities", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC1403", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1905", + "title": "Jr Sem: Power and Ideas", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC1404", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1909", + "title": "Jr Sem: Technology and Human Progress", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC1408", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1910", + "title": "Jr Sem: The Pursuit of Happiness", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC1409\nUQF2101J", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1911", + "title": "Jr Sem: Special Topics", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC1410", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1912", + "title": "Jr Sem : Special Topics", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1912B", + "title": "Jr Sem Special Topics: Quality Journalism and Critical Reading", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1913", + "title": "Beasts, People and Wild Environments in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEH1010", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1914", + "title": "Jnr Sem: Systems Systems Everywhere", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1915%, GEM1918, GEM1919, GET1011, UTC1411, UTC1700, UTC1701", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1917", + "title": "Understanding and Critiquing Sustainability", + "moduleCredit": 4, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEQ1917 (twin-code)", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1918", + "title": "Thinking in Systems: Ecosystems and Natural Resources", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM1919", + "title": "Thinking in Systems: Diseases and Healthcare", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2000", + "title": "Foundations of Real Estate Appraisal", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "All School of Design and Environment students are not allowed to read it as a GEM.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2004K", + "title": "History & Theory Of Industrial Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2005", + "title": "Film and History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2243, GEH1011", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2006", + "title": "Logic", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2110, CS3234, MA4207, GET1028", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2007K", + "title": "East Asia", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2021", + "title": "Technology and Artistic Innovators", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "MUL3202 GEH1048", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2022", + "title": "The Art of Rituals and Recreation", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "MUL3203, GEH1039", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2025", + "title": "Introduction to Philosophy Of Science", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2026", + "title": "Film Genres: Stars and Styles", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "TS2243. Students who are majoring in TS, or intend to major in TS should not take\nGEM2026.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2027", + "title": "Public Speaking and Critical Reasoning", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GET1008", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2028", + "title": "Citizenship in a Changing World", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2028X", + "title": "Citizenship in a Changing World", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2028\nSSU2007%\nUTC2403\nUTS2403", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2501", + "title": "Electric Energy - Powering The New Millenium", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "All FoE & CEG students are not allowed to read this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge of mathematics and physics at GCE O level", + "corequisite": "" + }, + { + "moduleCode": "GEM2502", + "title": "Modes Of Invention", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "GET1010", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2503", + "title": "Thinking Science on Computer", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GET1012", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2505", + "title": "Taming Chaos", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GET1015", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2507", + "title": "Physical Questions from Everyday Life", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1035", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2900", + "title": "Understand'g Uncertainty & Stats Think'g", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "Not for Statistics Major students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2901", + "title": "Reporting Statistics in the Media", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2903", + "title": "Community Leadership", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "This module is currently open only to students of the College of Alice & Peter Tan, University Town", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2903X", + "title": "Community Leadership", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2903\nUTC2400", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2905X", + "title": "Singapore as ‘Model’ City?", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21% or UTS2105 or SSU2004%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "GEM2906", + "title": "Environment and Civil Society in Singapore", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "This module is currently open only to students of the College of Alice & Peter Tan, University Town", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2906X", + "title": "Environment and Civil Society in Singapore", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2906\nSSU2005%\nUTC2402\nUTS2402", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM2907X", + "title": "Senior Seminar: Negotiating in a Complex World", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "GEM2908X", + "title": "Senior Seminar: Technology and the Fate of Knowledge", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "GEM2911", + "title": "Committed to Changing Our World: Dana Meadows’ Legacy", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27% or GEM2911X", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "GEM2911X", + "title": "Committed to Changing Our World: Dana Meadows’ Legacy", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27% or GEM2911", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "GEM3002", + "title": "Global Cities and Local Cultures", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM3003", + "title": "Literature and the other Arts", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3246", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(i) EN1101E or GEK1000, AND (ii) at least one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207)", + "corequisite": "So long as students have fulfilled EN1101E/GEK1000, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207)." + }, + { + "moduleCode": "GEM3881", + "title": "Gem B", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM3902", + "title": "Independent Study", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC3400", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEM3903", + "title": "CAPT Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "This module is currently open only to students of the College of Alice & Peter Tan, University Town", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEQ1000", + "title": "Asking Questions", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "GEQ1000H, GEQ1000E, GEQ1000K, GEQ1000W, GEQ1000R, GEQ1000S, GEQ1000T, GEQ1000P", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEQ1000H", + "title": "Asking Questions", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "GEQ1000, GEQ1000E, GEQ1000K, GEQ1000W, GEQ1000R, GEQ1000S, GEQ1000T, GEQ1000P", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be read by students from halls – Eusoff, Kent Ridge, King Edward, Raffles, Sheares, Temasek, PGPH", + "corequisite": "" + }, + { + "moduleCode": "GEQ1000X", + "title": "Asking Questions", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "GEQ1000H, GEQ1000E, GEQ1000K, GEQ1000W, GEQ1000R, GEQ1000S, GEQ1000T, GEQ1000P, GEQ1000", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GEQ1917", + "title": "Understanding and Critiquing Sustainability", + "moduleCredit": 4, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1917 (twin-code)", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GER1000", + "title": "Quantitative Reasoning", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "GER1000E, GER1000K, GER1000W, GER1000R, GER1000S, GER1000T, GER1000P, GER1000B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GER1000B", + "title": "Quantitative Reasoning", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [], + "preclusion": "GER1000, GER1000E, GER1000K, GER1000W, GER1000R, GER1000S, GER1000T, GER1000P", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be read by SCALE students reading in Special Term.", + "corequisite": "" + }, + { + "moduleCode": "GER1000H", + "title": "Quantitative Reasoning", + "moduleCredit": 4, + "department": "Office of Sr Dy Pres and Provost", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "GER1000, GER1000B, GER1000E, GER1000K, GER1000W, GER1000R, GER1000S, GER1000T, GER1000P", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be read by students from halls – Eusoff, Kent Ridge, King Edward, Raffles, Sheares, Temasek, PGPH", + "corequisite": "" + }, + { + "moduleCode": "GES1000", + "title": "Singapore Employment Law", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "SSB1204, SSB1204T, GES1000T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1000T", + "title": "Singapore Employment Law", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "SSB1204, SSB1204T, GES1000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1001", + "title": "Employee Management In S'pore", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "SSB2216, SSB2216T, GES1001T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1001T", + "title": "Employee Management In Singapore", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "MNO2302,SSB2216, SSB2216T, GES1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1002", + "title": "Global EC Dimensions of S'pore", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SSA2220, SSA2220T, GES1002T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1002T", + "title": "Global Economic Dimensions Of Singapore", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 3 + ], + "preclusion": "EC2202, EC2373, GES1002, SSA2220, SSA2220T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1003", + "title": "Changing Landscapes of Singapore", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK2001, SSA2202", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1004", + "title": "The Biophysical Env of S'pore", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA2215", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1005", + "title": "Everyday Life of Chinese Singaporeans: Past & Present (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SSA1208", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1006", + "title": "Singapore and India: Emerging Relations", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA2214", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1007", + "title": "South Asia in Singapore", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SSA2219", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1008", + "title": "Ethnicity and Nation-Building: Singapore and Malaysia", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1051", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1009", + "title": "Singapore’s Business History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2239 and SSA2203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1010", + "title": "Nation-Building in Singapore", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "HY2229, USE2304 and SSA2204", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1010T", + "title": "Nation-Building in Singapore", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "HY2229, USE2304, SSA2204, GES1010", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1011", + "title": "The Evolution of a Global City-State", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA2211", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1012", + "title": "Popular Culture in Singapore", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "HY2254 and SSA2221", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1013", + "title": "Singapore Urban History & Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "SSD2213", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1014", + "title": "Islam and Contemporary Malay Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SSA2206, MS2205.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1015", + "title": "Singapore and Japan: Historical and Contemporary Relationships", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA2205, JS2224", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1016", + "title": "Contemporary Social Issues in Singapore", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1012", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1017", + "title": "Building a Dynamic Singapore - Role of Engineers", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "SSE1201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1018", + "title": "Singapore, Asia and American Power", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SSA1203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1019", + "title": "Managing Singapore's Built Environment", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "SSD2210", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1020", + "title": "Western Music within a Singaporean Context", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "SSY2223", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1021", + "title": "Natural Heritage of Singapore", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SSS1207, YID3218", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1022", + "title": "The Singlish Controversy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1063, SSA1209", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1023", + "title": "Representing Singapore", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA1206", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1024", + "title": "Real Estate Development & Investment Law", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "SSD1203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1025", + "title": "Singapore Literature in English: Selected Texts", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SSA1207, SSA1207FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1026", + "title": "Urban Planning in Singapore", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "GEK2005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1027", + "title": "Taxation and the Singapore Miracle", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "SSB2217", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1028", + "title": "Singapore Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SSA1201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1029", + "title": "Singapore Film: Performance of Identity", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SSA2218, TS2238", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1030", + "title": "Singapore and the Sea", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1031", + "title": "Culture and Communication in Singapore", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1033", + "title": "Who moved my OB markers?", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1034", + "title": "We the Citizens - Understanding Singapore’s Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1035", + "title": "Singapore: Imagining the Next 50 Years", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1036", + "title": "The Arts in Singapore Today", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1037", + "title": "A History of Singapore in Ten Objects", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1038", + "title": "La Kopi: Forging of the Chinese Singaporean Community", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1039", + "title": "Cultural Performances and Practices in Singapore", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1040", + "title": "Prominent Chinese in Colonial Singapore", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "CH2298 Chinese Personalities in Southeast Asia", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "2-1-0-2-5" + }, + { + "moduleCode": "GES1041", + "title": "Everyday Ethics in Singapore", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1042", + "title": "Public Health in Singapore: Challenges and Changes", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GES1043", + "title": "State of the Art: A Current View of Music in Singapore", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1000", + "title": "Ethics at Work: Rhyme, Reason and Reality", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEK1020", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1001", + "title": "Seeing the World Through Maps", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1037", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1002", + "title": "Bridging East and West: Exploring Chinese Communication", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1062", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1003", + "title": "Home", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM1046", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1004", + "title": "Cyber Security", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEK1531", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1005", + "title": "Evaluating Academic Arguments", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "GEM1008", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1007", + "title": "Intellectl Ppty In Cyberspace", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEK1042", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1008", + "title": "Public Speaking and Critical Reasoning", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM2027", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1009", + "title": "Maverick or Mahatma? Gandhi’s Life & Legacy", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1048", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1010", + "title": "Modes Of Invention", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "GEM2502", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Prerequisite of basic knowledge of physics at GCE \"O\" levels", + "corequisite": "" + }, + { + "moduleCode": "GET1011", + "title": "Towards an Understanding of the Complex World", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "GEM1912 Jnr Sem: Systems Systems Everywhere (offered at CAPT, UTown)\n\nDespite the minimal overlap, the preclusion may be needed to ensure that students who have completed GEM1912 do not have an unfair starting advantage over others who take this module.\n\nGEM1915", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1012", + "title": "Thinking Science on Computer", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEM2503", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1013", + "title": "Physics in the Life Sciences", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEK1521", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1014", + "title": "The Art of Science, the Science of Art", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1547", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1015", + "title": "Taming Chaos", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEM2505.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1016", + "title": "Understanding the Changing Global Economic Landscape", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEM1052", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1016T", + "title": "Understanding The Changing Global Economic Landscape", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2, + 3 + ], + "preclusion": "GEM1052, GET1016", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1017", + "title": "Mathematical Thinking", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "GEK1517", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1018", + "title": "The Mathematics of Games", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "GEK1544", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1019", + "title": "Patrons of the Arts", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "GEM1029, MUL2102", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1020", + "title": "Darwin and Evolution", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1902B Junior Seminar: The Darwinian Revolution. GEM1536", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1021", + "title": "Critical Thinking And Writing", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "1. IEM1201%, UTW1001%, ES1531, GEK1549 and GET1021. \n2. U-town students cannot select ES2531.\n3. ES1601 and ES1601A Professional and Academic Communication.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. Students who are required to take ES1000 Foundation Academic English and/or ES1103 English for Academic Purposes must pass the modules before they are allowed to read this module. \n2. Students who matriculated in AY2014/15 and AY2015/16 are to read the cross-listed modules, GEK1549 and GET1021, respectively.", + "corequisite": "" + }, + { + "moduleCode": "GET1022", + "title": "Understanding Your Brain", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1023", + "title": "Thinking Like An Economist", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1024", + "title": "Radiation-Scientific Understanding and Public Perception", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1025", + "title": "Science Fiction and Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK2041", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1026", + "title": "Effective Reasoning", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK2048", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1027", + "title": "Reason and Persuasion", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEM1004", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1028", + "title": "Logic", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PH2110, CS3234, MA4207, GEM2006", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1029", + "title": "Life, the Universe, and Everything", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PH1102E, GEK1067", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1030", + "title": "Computers and the Humanities", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK2050", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1031", + "title": "Computational Thinking", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "GET1031A", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1032", + "title": "Building Relationship : Theories and Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1033", + "title": "Exploring Computational Media Literacy", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1034", + "title": "Communication and Critical Thinking for Community Leadership", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1035", + "title": "Critical Perspectives in Advertising", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1036", + "title": "The Logic of Language", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1037", + "title": "Big Picture History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1038", + "title": "Communication in Small Groups", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1039", + "title": "What, When and Where is Art?", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1040", + "title": "Communicating about the Arts", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1041", + "title": "Disney and the Theme Park World", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1042", + "title": "Sky and Telescopes", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1043", + "title": "Universe, Big Bang, and Unsolved Mysteries", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1044", + "title": "Hollywood Cinema: Constructing the Realistic", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1045", + "title": "Structures of Conversation", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1046", + "title": "I Do Not Think Therefore I Am", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1047", + "title": "Art and Identity", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1048", + "title": "Science: From Thinking to Narratives", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1049", + "title": "Thinking Strategically", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GET1050", + "title": "Computational Reasoning", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GET1031A Computational Thinking", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GL1101E", + "title": "Global Issues", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GL2101", + "title": "Origins of the Modern World", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GL1101E", + "corequisite": "" + }, + { + "moduleCode": "GL2102", + "title": "Global Political Economy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GL1101E", + "corequisite": "" + }, + { + "moduleCode": "GL2103", + "title": "Global Governance", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GL1101E", + "corequisite": "" + }, + { + "moduleCode": "GL2104", + "title": "Inquiry and Method", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GL3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ARS3 and above GL major students only. GL1101E and one of the following Core Modules: GL2101 Origins of the Modern World, GL2102 Global Political Economy, GL2103 Global Governance.", + "corequisite": "" + }, + { + "moduleCode": "GL3101", + "title": "Inquiry and Method", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ARS3 and above GL major students only. GL1101E and one of the following Core Modules: GL2101 Origins of the Modern World, GL2102 Global Political Economy, GL2103 Global Governance.", + "corequisite": "" + }, + { + "moduleCode": "GL3201", + "title": "Doing Global Visual Culture", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ARS2 students and above only. GL1101E.", + "corequisite": "" + }, + { + "moduleCode": "GL3550", + "title": "Global Studies Internship", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should:\nhave completed a minimum of 24 MC in Global Studies including GL1101E and one of the following Core Modules GL2101, GL2102, GL2103; and have declared Global Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "GL3551", + "title": "FASS Undergraduate Research Opportunity", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "GL4101", + "title": "Research in Global Issues", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GL majors ONLY. Completed 80 MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. Completed GL2104 Inquiry & Method or SC2101 Methods of Social Research.", + "corequisite": "" + }, + { + "moduleCode": "GL4102", + "title": "Task Force", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GL majors ONLY. Completed 80 MCs, including 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track, and GL4101 Readings in Global Issues.", + "corequisite": "" + }, + { + "moduleCode": "GL4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GL4660", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs including 60 MCs of GL/GL recognised non-language modules, with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 52 MCs of GL/GL recognised non-language modules, with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "GL4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GL4401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 52 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "GL4880", + "title": "Topics in Business and Transnational Cultures", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4880A", + "title": "Globalization, Culture, and Identity", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognized non-language modules with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4880B", + "title": "Globalisation and the Imagination of Work", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognized non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4881", + "title": "Topics in Colonialism and Postcolonialism", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4881A", + "title": "Colonial, Anticolonial and Postcolonial Globalizations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognized non-language modules, or 28MCs in SC or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4882", + "title": "Topics in Global Economics and Development", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4882A", + "title": "Development and the Globalisation of Food", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognised non‐language modules, or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4882B", + "title": "Contested Globalisation: Resistance and Resilience", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognised non-language modules, or 28 MCs in PS with a minimum CAP of 3.2, or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4882C", + "title": "The Politics of Global Finance", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL\nrecognised non-language modules, or 28 MCs in PS\nwith a minimum CAP of 3.20, or be on the Honours\ntrack.", + "corequisite": "" + }, + { + "moduleCode": "GL4882D", + "title": "Global Corporations and Power", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in GL/GL recognised non-language modules, 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4883", + "title": "Topics in Global Health and Environment", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4883A", + "title": "Conflict and Natural Resources", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognised non‐language modules or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4883B", + "title": "Climate Justice", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognized non-language modules, or 28 MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4884", + "title": "Topics in International Communications", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4885", + "title": "Topics in Policy Making", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4885A", + "title": "International Law and World Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognised non-language modules, or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4886", + "title": "Topics in Population and Migration", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4886A", + "title": "Citizenship and the Politics of Belonging", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognised non‐language modules, or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4886B", + "title": "The International Refugee Regime", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GL3202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GL1101; and Completed 80MCs, including 28 MCs in GL/GL recognised non-language modules, or 28 MCs in PS with a minimum CAP of 3.20 or be on the Honours Track.", + "corequisite": "" + }, + { + "moduleCode": "GL4887", + "title": "Topics in Religion and Ethnicity", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4887A", + "title": "The Modern Middle East in the Age of Globalizations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in GL/GL recognised non-language modules or 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4888", + "title": "Topics in Technology and Globalisation", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4888A", + "title": "Justice and Emerging Technology", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognized non-language modules, or 28MCs in SC or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "GL4889", + "title": "Topics in War and Security", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GL4889A", + "title": "International Law's Regulation of Violence", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in GL/GL recognised non-language modules, or 28MCs in SC or 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours Track.", + "corequisite": "" + }, + { + "moduleCode": "GL4889B", + "title": "Debates on Human Rights", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in GL/GL recognized non-language modules, or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "GMS1000", + "title": "The Duke-NUS Premed Course", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2, + 3 + ], + "preclusion": "FMS1201D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5001", + "title": "Foundations of Health Product Regulation", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5002", + "title": "Leadership for Regulatory Professionals", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5011", + "title": "Fundamentals of Pharmaceutical Regulation", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5012", + "title": "Chemistry, Manufacturing and Controls (CMC)", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5101", + "title": "Clinical Trial Design and Data Analysis", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5102", + "title": "Multi-Regional Clinical Trials (MRCT)", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5103", + "title": "Regulation of Cell, Tissue and Gene Therapies", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5104", + "title": "Biotherapeutics and Biosimilars", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5105", + "title": "Generic Medicines", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5106", + "title": "Regulation of Digital Health Products", + "moduleCredit": 0, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5107", + "title": "In-Vitro Diagnostic Devices and Precision Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5111", + "title": "Pharmacovigilance Principles and Frameworks", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5112", + "title": "Pharmacovigilance Risk Management Planning", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5113", + "title": "Post-market Surveillance and Enforcement", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5114", + "title": "Post-Market for Medical Technologies", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5121", + "title": "Advanced Topics in Regulatory Policy", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5122", + "title": "Strategic Planning for Pharmaceutical Products", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5123", + "title": "Strategic Planning for Medical Devices", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS5201", + "title": "Implementation Science for Health Services", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS5202", + "title": "Research Methods for Health Services", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS5203", + "title": "Health Technology Assessment, Cost-Effectiveness and Decision-making", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS5204", + "title": "Data Science + Healthcare", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS6100", + "title": "C.A.R.E. 1: Joining the Medical Profession", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6101", + "title": "Molecules, Cells and Tissues", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6102", + "title": "Human Structure & Function", + "moduleCredit": 12, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6103", + "title": "Brain & Behaviour", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6104", + "title": "Body & Disease", + "moduleCredit": 18, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6105", + "title": "Fundamentals of Clinical Practice", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6106", + "title": "Investigative Methods & Tools", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6107", + "title": "Evidence Based Medicine", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6200", + "title": "C.A.R.E. 2: Learning From & For Patients", + "moduleCredit": 7, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6201", + "title": "Medicine Clerkship", + "moduleCredit": 8, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6202", + "title": "Surgery Clerkship", + "moduleCredit": 8, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6203", + "title": "Obstetrics & Gynecology Clerkship", + "moduleCredit": 8, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6204", + "title": "Paediatrics Clerkship", + "moduleCredit": 8, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6205", + "title": "Psychiatry Clerkship", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6206", + "title": "Neurology Clerkship", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6207", + "title": "Clinical Core 1", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6208", + "title": "Clinical Core 2", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6209", + "title": "Clinical Core 3", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6210", + "title": "Oncology, Geri Med & Pall Care Progrm", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6211", + "title": "Clinical Core 5", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6212", + "title": "Practice Course 2", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6213D", + "title": "Emergency Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6214B", + "title": "Histopathology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6214D", + "title": "Histopathology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6215", + "title": "Anaesthesiology Program", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6216", + "title": "Obstetrics & Gynaecology Clerkship", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6217", + "title": "Longitudinal Integrated Clerkship", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6218", + "title": "Fundamentals of Research & Scholarship", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6219", + "title": "Geriatrics & Nutrition", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6220", + "title": "Innovation & Design Thinking", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6221D", + "title": "Oncologic Body Imaging", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6222B", + "title": "Vascular & Interventional Radiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6222D", + "title": "Vascular & Interventional Radiology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6223B", + "title": "Paediatric Radiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6223D", + "title": "Paediatric Radiology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6224B", + "title": "Neuroradiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6224D", + "title": "Neuroradiology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6225B", + "title": "Basic Radiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6225C", + "title": "Basic Radiology", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6225D", + "title": "Basic Radiology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6226D", + "title": "Body Imaging", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6227D", + "title": "Oncologic Imaging", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6228", + "title": "Radiology Program", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6230B", + "title": "Paediatric Emergency Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6230D", + "title": "Paediatric Emergency Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6231B", + "title": "Paediatric Rheumatology & Immunology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6231D", + "title": "Paediatric Rheumatology & Immunology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6232B", + "title": "Paediatric Allergy and Immunology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6232D", + "title": "Paediatric Allergy and Immunology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6233D", + "title": "Neonatology Elective Program", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6234B", + "title": "Perinatal Psychiatry", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6234D", + "title": "Perinatal Psychiatry", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6235D", + "title": "General Paediatrics Elective", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6236B", + "title": "Paediatric Neurology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6236D", + "title": "Paediatric Neurology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6237B", + "title": "Paediatric Developmental Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6237D", + "title": "Paediatric Developmental Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6238B", + "title": "Paediatric Orthopaedics", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6238C", + "title": "Paediatric Orthopaedics", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6240B", + "title": "Gynaecology Oncology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6240D", + "title": "Gynaecology Oncology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6242B", + "title": "OB Anaesthesia Clinical & Research Prog", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6242C", + "title": "OB Anaesthesia Clinical & Research Prog", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6242D", + "title": "OB Anaesthesia Clinical & Research Prog", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6246", + "title": "Fundamentals of Family Medicine", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6247", + "title": "Clinical Reflections", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6250B", + "title": "Consultation-Liaison Psychiatry", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6250C", + "title": "Consultation-Liaison Psychiatry", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6250D", + "title": "Consultation-Liaison Psychiatry", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6251B", + "title": "Child & Adolescent Psychiatry", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6251D", + "title": "Child & Adolescent Psychiatry", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6252B", + "title": "Mood Disorders & Schizophrenia", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6252D", + "title": "Mood Disorders & Schizophrenia", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6253B", + "title": "Early Psychosis Intervention", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6253D", + "title": "Early Psychosis Intervention", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6260", + "title": "Palliative Medicine", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6260B", + "title": "Palliative Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6260D", + "title": "Palliative Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6261", + "title": "General Rehabilitative Medicine", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6261B", + "title": "General Rehabilitation Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6261D", + "title": "General Rehabilitation Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6262", + "title": "Geriatric Medicine", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6262B", + "title": "Geriatric Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6262D", + "title": "Geriatric Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6263D", + "title": "Respiratory & Critical Care Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6264B", + "title": "Infectious Disease", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6264C", + "title": "Infectious Disease", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6264D", + "title": "Infectious Disease", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6265B", + "title": "Rheumatology & Immunology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6265D", + "title": "Rheumatology & Immunology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6266B", + "title": "Gastroenterology/Hepatology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6266D", + "title": "Gastroenterology/Hepatology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6267B", + "title": "Medical Oncology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6267D", + "title": "Medical Oncology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6268B", + "title": "Clinical Cardiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6268C", + "title": "Clinical Cardiology", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6268D", + "title": "Clinical Cardiology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6269B", + "title": "Dermatology @ SGH", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6269D", + "title": "Dermatology @ SGH", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6270B", + "title": "Renal Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6270C", + "title": "Renal Medicine", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6270D", + "title": "Renal Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6271B", + "title": "Endocrinology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6272B", + "title": "Neurology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6272D", + "title": "Neurology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6273B", + "title": "Respiratory Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6274B", + "title": "Dermatology @NSC", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6274D", + "title": "Dermatology @NSC", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6275B", + "title": "Neurology @TTSH", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6276", + "title": "Cardiology Program", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6280B", + "title": "Advanced Urologic Clerkship", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6280D", + "title": "Advanced Urologic Clerkship", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6281B", + "title": "Colorectal Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6281D", + "title": "Colorectal Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6282C", + "title": "Surgical Oncology", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6282D", + "title": "Surgical Oncology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6283B", + "title": "Hand Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6283D", + "title": "Hand Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6284B", + "title": "Plastic, Reconstructive & Aesthetic Surg", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6284D", + "title": "Plastic, Reconstructive & Aesthetic Surg", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6285B", + "title": "Neurosurgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6285D", + "title": "Neurosurgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6286B", + "title": "Anaes, Perioperative Med & Pain Mgmt", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6286D", + "title": "Anaes, Perioperative Med & Pain Mgmt", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6287B", + "title": "HPB & Liver Transplant Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6287D", + "title": "HPB & Liver Transplant Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6288B", + "title": "Orthopaedics - Adult Reconstruction", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6289B", + "title": "Sports Orthopaedic Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6290B", + "title": "Orthopaedics - Trauma", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6290D", + "title": "Orthopaedics - Trauma", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6291B", + "title": "Ophthalmology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6292B", + "title": "Breast Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6292D", + "title": "Breast Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6293B", + "title": "Orthopaedics - Spine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6294D", + "title": "General Surgery Elective", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6295D", + "title": "Upper Gastrointestinal Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6296B", + "title": "Vascular Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6296D", + "title": "Vascular Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6297", + "title": "Musculoskeletal Year 2 Program", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6298", + "title": "Clinical Oncology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6300", + "title": "Orientation to Research Year", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6301", + "title": "Practice Course 3", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6302", + "title": "Family Medicine Clerkship", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6304", + "title": "Research Methods and Analysis", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6305B", + "title": "Family Medicine Elective@SHS Polyclinics", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6306B", + "title": "Transitional Care & Com Hosp Setting", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6310", + "title": "IRB Modules", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6311", + "title": "Research/Scholarship (Part 1)", + "moduleCredit": 17, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6312", + "title": "Research/Scholarship (Part 2)", + "moduleCredit": 17, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6313", + "title": "Research/Scholarship Thesis", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6390", + "title": "C.a.r.e. 3", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6398B", + "title": "General Clinical Elective", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6398C", + "title": "General Clinical Elective", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6398D", + "title": "General Clinical Elective", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6399A", + "title": "Independent Study", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6399B", + "title": "Independent Study", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6399D", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6400", + "title": "Practice Course 4", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6401", + "title": "Advanced Medicine", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6401F", + "title": "Medicine Sub-Internship", + "moduleCredit": 7, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6402", + "title": "Advanced Surgery", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6403", + "title": "Critical Care Rotation", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6404", + "title": "Musculoskeletal Rotation", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6405", + "title": "Phase 4 Family Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6406", + "title": "Community Hospital", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6407D", + "title": "Psychiatry Sub-Internship", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6410", + "title": "Advance Clinical Practice", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6410B", + "title": "Advance Clinical Practice", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6411", + "title": "Student as Future Educator", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6412B", + "title": "General Pathology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6412D", + "title": "General Pathology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6413B", + "title": "Microbiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6413D", + "title": "Microbiology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6414", + "title": "Emergency Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6417B", + "title": "Radiation Oncology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6417D", + "title": "Radiation Oncology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6421B", + "title": "Molecular & Functional Imaging", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6421D", + "title": "Molecular & Functional Imaging", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6427B", + "title": "Cognitive Neurology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6427D", + "title": "Cognitive Neurology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6430C", + "title": "Children Intensive & Acute Care", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6430D", + "title": "Children Intensive & Acute Care", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6431B", + "title": "Paediatrics (General&Urological) Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6431D", + "title": "Paediatrics (General&Urological) Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6432B", + "title": "Paediatric Infectious Diseases", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6432D", + "title": "Paediatric Infectious Diseases", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6433D", + "title": "Paediatrics Sub-Internship", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6434B", + "title": "Paediatric Cardiothoracic Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6434D", + "title": "Paediatric Cardiothoracic Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6435B", + "title": "Paediatric Neurosurgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6435D", + "title": "Paediatric Neurosurgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6436B", + "title": "Paediatric Anaesthesia", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6436D", + "title": "Paediatric Anaesthesia", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6437B", + "title": "Paediatric Cardiology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6440B", + "title": "Maternal-Foetal/General OG Elective", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6440D", + "title": "Maternal-Foetal/General OG Elective", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6441D", + "title": "Maternal-Foetal/OG Sub-Internship", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6441F", + "title": "Maternal-Foetal/OG Sub-Internship", + "moduleCredit": 7, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6442B", + "title": "Reproductive Medicine", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6450B", + "title": "General & Consultatn Liaison Psychiatry", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6451B", + "title": "Psychogeriatrics", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6451D", + "title": "Psychogeriatrics", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6452B", + "title": "Psychotraumatology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6454B", + "title": "Addiction", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6454D", + "title": "Addiction", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6455B", + "title": "Geriatric Psychiatry @IMH", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6460", + "title": "Dermatology", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6460B", + "title": "Dermatology @ CGH", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6461B", + "title": "Internal Medicine Elective @ CGH", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6461D", + "title": "Internal Medicine Elective @ CGH", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6463B", + "title": "Haematology", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6463D", + "title": "Haematology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6466D", + "title": "Medical Oncology (Y4)", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6482B", + "title": "Cardiothoracic Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6482D", + "title": "Cardiothoracic Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6483", + "title": "Ophthalmology", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6483D", + "title": "Ophthalmology Sub-Internship", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6484", + "title": "Otorhinolaryngology", + "moduleCredit": 1, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6484B", + "title": "Otorhinolaryngology (ENT)", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6484D", + "title": "Otorhinolaryngology (ENT)", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6487B", + "title": "Upper Gastrointestinal Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6487D", + "title": "Upper Gastrointestinal Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6488B", + "title": "Head & Neck Surgery", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6488D", + "title": "Head & Neck Surgery", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6489D", + "title": "Orthopaedic Surgery Sub-Internship", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6490B", + "title": "Trauma Surgery (General Surgery)", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6491B", + "title": "Sports Medicine @ CGH", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6495", + "title": "Student-In-Practice (Medicine)", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6496", + "title": "Student-In-Practice (Surgery)", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6497", + "title": "Student-In-Practice", + "moduleCredit": 6, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6499", + "title": "Capstone", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6500", + "title": "C.A.R.E. 4: Caring for Patients", + "moduleCredit": 5, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6800", + "title": "Integrated Biostatistics and Bioinformatics Journal Club", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6801", + "title": "Study Designs in Clinical and Population Health Research", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6802", + "title": "Analysis of Complex Biomedical Data", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Core Concepts in Biostatistics", + "corequisite": "" + }, + { + "moduleCode": "GMS6803", + "title": "Design and Analysis of Modern Clinical Studies", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6804", + "title": "Biomedical Research Internship", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of 1st year course work", + "corequisite": "" + }, + { + "moduleCode": "GMS6810", + "title": "Clinical and Translational Research Journal Club", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS6811", + "title": "Principles of Clinical Research", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS6812", + "title": "Foundations of Precision Medicine", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Sc", + "corequisite": "" + }, + { + "moduleCode": "GMS6813", + "title": "Biostatistics for Clinical Research", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6820", + "title": "Core Concepts in Biostatistics", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Strong undergraduate training and background in statistics, mathematics or epidemiology.", + "corequisite": "" + }, + { + "moduleCode": "GMS6821", + "title": "R-Programming", + "moduleCredit": 0, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6850", + "title": "Core Concepts in Bioinformatics", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GMS6901, “Molecules to Medicines”, or a strong undergraduate background in biology and molecular biology. An undergraduate module in computer programming, or permission from the module coordinator.", + "corequisite": "" + }, + { + "moduleCode": "GMS6891", + "title": "Thesis Research (QBM Computational Biology)", + "moduleCredit": 36, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GMS6850-Core Concepts in Bioinformatics", + "corequisite": "" + }, + { + "moduleCode": "GMS6892", + "title": "Thesis Research", + "moduleCredit": 32, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GMS6801 Study Designs in Clinical and Population Health Research and GMS6820 Core Concepts in Biostatistics", + "corequisite": "" + }, + { + "moduleCode": "GMS6900", + "title": "Student Research Seminars", + "moduleCredit": 3, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Only for PhD students in IBM program", + "corequisite": "" + }, + { + "moduleCode": "GMS6901", + "title": "Molecules to Medicines", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6902", + "title": "Laboratory Rotation 1", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6903", + "title": "Laboratory Rotation 2", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6904", + "title": "Principles of Infectious Diseases", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have followed course GMS6901 “Molecules to Medicines” or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "GMS6905", + "title": "Developments in Infectious Diseases", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module complements course GMS 6904 “Principles of Infectious Diseases”.", + "corequisite": "" + }, + { + "moduleCode": "GMS6906", + "title": "Laboratory Rotation 3", + "moduleCredit": 2, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6910", + "title": "Evolutionary Genetics", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6920", + "title": "Metabolic Basis of Disease", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6921", + "title": "Cardiovascular Molecular Biology", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Molecules to Medicines (GMS6901) or equivalent introductory graduate biochemistry course", + "corequisite": "" + }, + { + "moduleCode": "GMS6950", + "title": "Health Services and Systems Research", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6951", + "title": "Dynamic Modelling of Healthcare Services and Systems", + "moduleCredit": 4, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6991", + "title": "Thesis", + "moduleCredit": 40, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GMS6992", + "title": "Thesis (HSSR)", + "moduleCredit": 19, + "department": "Duke-NUS Dean's Office", + "faculty": "Duke-NUS Medical School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GPM3010", + "title": "Ethics And Jurisprudence", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GPM4000", + "title": "General Practise Management", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GPM4010", + "title": "Ethics And Jurisprudence", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5001", + "title": "Research Ethics & Integrity 1", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5002", + "title": "Academic Professional Skills and Techniques", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5003", + "title": "Stem Cell Biology", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5007", + "title": "Microscopy For Cell & Developmental Biology", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5100", + "title": "Research Supervision", + "moduleCredit": 0, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5101", + "title": "Research Immersion module", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5101A", + "title": "Lab Rotation", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS5104", + "title": "Undergraduate Teaching", + "moduleCredit": 0, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6001", + "title": "Research Ethics and Scientific Integrity", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6003", + "title": "Stem Cell Biology", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6004", + "title": "Vision and Perception", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6007", + "title": "Microscopy for Cell & Developmental Biology", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6880A", + "title": "The Biology and Sociology of Influenza Pandemics", + "moduleCredit": 1, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6880B", + "title": "Infectious Disease Modeling", + "moduleCredit": 1, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6881A", + "title": "BioEnergy", + "moduleCredit": 1, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6882A", + "title": "Biology of Disease", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6883A", + "title": "Interface Science and Engineering", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6884A", + "title": "Introduction to Optical Tweezers", + "moduleCredit": 1, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6885", + "title": "Introduction to Image Processing and Basic ImageJ", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6887A", + "title": "Sound, Music, and Mind", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GS6889A", + "title": "Academic Professional Skills II", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The skills capsules are timed.", + "corequisite": "" + }, + { + "moduleCode": "GS6889B", + "title": "Academic Skills and Research Ethics", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSC6880A", + "title": "Computational Systems Biology", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSG6886A", + "title": "Graphene: Production, Properties and Applications", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6501", + "title": "Neuronal Signalling", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6502", + "title": "Developmental Neurobiology: from genes to neuronal circuits", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6503", + "title": "Techniques in Neuroscience", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6504", + "title": "Behavioral & Cognitive Neuroscience", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Neuronal signalling", + "corequisite": "" + }, + { + "moduleCode": "GSN6505", + "title": "Brain Disorders & Repair", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6506", + "title": "Computational Neuroscience & Neuroengineering", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6880", + "title": "Neuroethics", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSN6881", + "title": "Human Cognitive Neuroscience: A hands on approach", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "GSS6886", + "title": "NGS Seminars", + "moduleCredit": 2, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HM5102", + "title": "Psychosis", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HM5103", + "title": "Mood, Anxiety, & Grief", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HM5104", + "title": "Addiction/ Personality Disorders", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HM5105", + "title": "Child & Adolescent Mental Health including Learning Disabilities", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HM5106", + "title": "Psychogeriatrics", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HM5107", + "title": "Personality Disorders and Psychological Therapies", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "HR1424", + "title": "Business, Management And People", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HR1424T", + "title": "Business, Management And People", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "HR2002T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HR2002", + "title": "Human Capital in Organizations", + "moduleCredit": 3, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have passed or are reading HR2001 or HR2101 or HR3111 are not allowed to take HR2002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Engineering students only", + "corequisite": "" + }, + { + "moduleCode": "HR2002T", + "title": "Human Capital in Organizations", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "HR1424T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HR2101A", + "title": "Understand'G Hr In The New Economy", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HR2307", + "title": "Human Resource Management (Medicine)", + "moduleCredit": 1, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HR3003", + "title": "Management And Human Relations", + "moduleCredit": 4, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For School of Design and Environment students only", + "corequisite": "" + }, + { + "moduleCode": "HR3302", + "title": "Human Resource Management", + "moduleCredit": 3, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HR3304", + "title": "Human Resource Management (Dentistry)", + "moduleCredit": 1, + "department": "Human Resource Management", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY1101E", + "title": "Asia and the Modern World", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2062", + "title": "Asia In The Modern World", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2206", + "title": "China's Imperial Past: History & Culture", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2207", + "title": "Struggle for Modern China, 1800-1949", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2208", + "title": "Pre-Modern Japan: History and Culture", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "HY3207", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2210", + "title": "State & Society in Early-Modern Europe", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2216", + "title": "Total War, 1815-1945", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2217", + "title": "Warfare after 1945", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2220", + "title": "Korea in the Twentieth Century", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2225", + "title": "East-West Artistic Interactions", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2015", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2231", + "title": "Upheaval in Europe: 1848-1918", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU2213", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2232", + "title": "Modern Japan: Conflict in History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2233", + "title": "International History of Singapore", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2235", + "title": "Environmental History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK2008", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2236", + "title": "US Media in the 20th Century & Beyond", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS2236", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2237", + "title": "The U.S.: From Settlement to Superpower", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "AS2237, GEK2000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2242", + "title": "Singapore's Military History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SSA2208", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2245", + "title": "Empires, Colonies and Imperialism", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EU2221", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2247", + "title": "Sport and History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2249", + "title": "Art and History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2250", + "title": "Introduction to Southeast Asian History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2251", + "title": "From the Wheel to the Web", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2252", + "title": "Introduction to Business History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2253", + "title": "Christianity in World History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2255", + "title": "Islam in World History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2257", + "title": "Law, Crime, and Punishment in History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2258", + "title": "Passage to India: Modern Indian Society", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2259", + "title": "The Craft of History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "YHU2217 and YHU3276", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be HY majors and have completed at least 40 MCs of\nwhich at least 16 MCs in HY, including HY1101E. For EU\nmajors, must have completed at least 40 MCs of which at\nleast 16 MCs in EU/LA [French/German/Spanish]/ recognised\nmodules, including EU1101E and HY1101E.", + "corequisite": "" + }, + { + "moduleCode": "HY2260", + "title": "History and Popular Culture", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2261", + "title": "Modern Middle East History: From 1699 to the Present", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2262", + "title": "The Ancient World: The Roman Empire", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "Students from Cohort 2017 and before who have taken HY2245/EU2221", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY2263", + "title": "The Ancient World: Ancient Greece", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3201", + "title": "Indonesia: History, Economy and Society", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3202", + "title": "International History of SE Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3204", + "title": "Southeast Asia: Decolonization & After", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3205", + "title": "Society & Economy in Late Imperial China", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3206", + "title": "East Asian International Relations", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3209", + "title": "Cold War in Europe, 1945-1991", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU3230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3214", + "title": "History of Strategic Thought", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3217", + "title": "The Making of Colonial Indochina", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3223", + "title": "Technology and Culture in the Asia-Pacific", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3224", + "title": "China and the Maritime World", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3225", + "title": "Minorities in Southeast Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3226", + "title": "Memory, Heritage & History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3227", + "title": "Europe of the Dictators", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU3212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3228", + "title": "The Evolution of Vietnam as a Nation", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3230", + "title": "American Business: Industrial Revolution-Web", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS3240, AS3230, HY3240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3231", + "title": "History of the Malay World", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3236", + "title": "The Struggle for India, 1920-1964", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "HY2228, SN2261, SN3262", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3237", + "title": "Issues in Thai History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3238", + "title": "The Political History of the US", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3239", + "title": "The United States in the Asia-Pacific", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS3239", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3240", + "title": "Making America Modern", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "AS3230, AS3240, HY3230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any level 1000 or 2000 History module or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "HY3242", + "title": "Modern Imperialism", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU3231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3243", + "title": "China and Southeast Asia: Past & Present", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3245", + "title": "Engendering History/Historicising Gender", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3246", + "title": "History of Muslim Southeast Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3247", + "title": "From Monarchy to Military: History of Myanmar", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3248", + "title": "People's Republic of China, 1949-1989", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3250", + "title": "Approaches to Singapore History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3251", + "title": "India’s Pursuit of Prosperity", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3252", + "title": "From Tropical Medicine to Bioscience", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3253", + "title": "Nation and Empire in East Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3254", + "title": "Cold War in East Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3256", + "title": "Brides of the Sea: Asia's Port Cities", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3257", + "title": "The Philippines: A Social and Cultural History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3258", + "title": "Cold War in the Global South", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3259", + "title": "Issues in Korean Cultural History since 1945", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3260", + "title": "Chinese Migrations in World History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3261", + "title": "Historicizing Science, Technology and Society", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3262", + "title": "Buddhism In Southeast Asian History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2234", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY3551", + "title": "FASS Undergraduate Research Opportunity", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "HY3880", + "title": "Topics in History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY4201", + "title": "Economy and Society in Southeast Asia", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in SE or 28MCs in MS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY or 28MCs in SE or 28MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4203", + "title": "Maritime History of China", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4205", + "title": "Early Modern Europe and its World", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EU4224", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4207", + "title": "Special Paper in Military History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4209", + "title": "Imperialism and Empires", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EU4226", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs including 28MCs in HY or 28MCs or 28MCs in GL/GL recognised non-language modules, in PS with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs including 28MCs in HY or 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4210", + "title": "Issues and Events in Malaysian History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in SC or 28MCs in MS, or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY or 28MCs in SC or 28MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4211", + "title": "Topics in Environmental History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY, or 28 MCs in SC, or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4212", + "title": "Special Paper in Modern European History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4214", + "title": "Approaches to Chinese History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4215", + "title": "The Classical Empires of Southeast Asia", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY or 28 MCs in SC or 28MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4216", + "title": "Culture and Literature in S.E.A. History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY or 28 MCs in SC or 28MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4217", + "title": "Approaches to Study of SE Asian History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY or 28MCs in SE or 28MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4218", + "title": "Approaches to Modern Japanese History", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "JS4213", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "HY4219", + "title": "American Intellectual History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "AS4219", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nCompleted 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.50 or be on the Honours track.\n\nCohort 2012 onwards:\nCompleted 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4221", + "title": "Imperial Legacies in Europe", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4222", + "title": "Asian Business History: Case Studies", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28 MCs in SC or 28MCs in SN or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY or 28 MCs in SC or 28MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4223", + "title": "Chinese Overseas: Sojourners & Settlers", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in HY or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4225", + "title": "Ideological Origins of US Foreign Policy", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: \nCompleted 80MCs, including 28MCs in HY, or 28 MCs in SC, or 28MCs in PS, or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards:\nCompleted 80MCs, including 28MCs in HY, or 28 MCs in SC, or 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4226", + "title": "European Intellectual History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4225", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in HY or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4227", + "title": "Sources of Singaporean History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4228", + "title": "Material Culture in History: Theory and Practice", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MC, including 28 MC in HY, with a minimum CAP of\n3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4229", + "title": "Biography and History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4230", + "title": "Historiography and Historical Method", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "HY4101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY or 28MCs in EU/LA (French/German/Spanish)/ recognised modules or 28MCs in MS or 28MCs in SN or 28MCs in SC or 28 MCs in GL or GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4231", + "title": "Family-State Relations in Chinese History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of\n3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4232", + "title": "History of American Icons", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in HY, or 28 MCs in GL or GL recognised non- language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in HY with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4233", + "title": "Japanese Colonialism and Imperialism", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in HY, with a minimum CAP of\n3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4234", + "title": "Grand Strategy in Peace and War", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in HY, with a minimum CAP of\n3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4235", + "title": "A History of the 20th Century and Beyond", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in HY, with a minimum CAP of\n3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4236", + "title": "Topics in Singaporean History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4237", + "title": "Global Histories of the Nuclear Age", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4238", + "title": "Gender, Culture & History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4239", + "title": "History of Gender in India", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "HY4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2013-2015:\nCompleted 110 MCs including 60 MCs of HY major requirements with a minimum SJAP of 4.00 and a CAP of 3.50. Students may seek a waiver of the SJAP pre- requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of HY major requirements with a minimum SJAP of 4.00 and a CAP of 3.50. Students may seek a waiver of the SJAP pre- requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs", + "corequisite": "" + }, + { + "moduleCode": "HY4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "HY4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in HY, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "HY4880", + "title": "Topics in History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY4880B", + "title": "Student Movements in Asia Since 1950", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MC, including 28 MCs in HY, or 28 MCs in GL or GL recognised non- language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MC, including 28 MCs in HY with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "HY5210", + "title": "Approaches to Modern Se Asian History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5210R", + "title": "Approaches to Modern Se Asian History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5211", + "title": "Approaches to Modern East Asian History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5301", + "title": "Internship in History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5302", + "title": "Approaches to Military History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5303", + "title": "Problems in Cultural History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5303R", + "title": "Problems in Cultural History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5304", + "title": "Imperialism & Empires: Historical Approaches", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5304R", + "title": "Imperialism & Empires: Historical Approaches", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5305", + "title": "Approaches to World History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5305R", + "title": "Approaches to World History", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5401", + "title": "Historiography On China", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5402", + "title": "Reconsidering the Cold War", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5402R", + "title": "Reconsidering the Cold War", + "moduleCredit": 5, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5403", + "title": "Interpreters of Southeast Asian Pasts", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6101", + "title": "Historiography: Theory & Archive", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6204", + "title": "Directed Studies: Selected Areas", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6205", + "title": "Special Topics in History and Historiography", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6206", + "title": "Community Formation in Se Asia", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6401", + "title": "Southeast Asian Historiography", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6402", + "title": "The Historian's Craft", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6881", + "title": "Topics in Southeast Asian History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "HY6882", + "title": "Topics in Chinese History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1101", + "title": "Design 01 - Basic Design", + "moduleCredit": 9, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1102", + "title": "Design 02 - Living & Workplace System", + "moduleCredit": 9, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1105", + "title": "Design Fundamentals 1", + "moduleCredit": 8, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Module not offered to none industrial design students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1106", + "title": "Design Fundamentals 2", + "moduleCredit": 8, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "Module not offered to none industrial design students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1111", + "title": "Modelling For Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1112", + "title": "Modelling and Sketching for Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1113", + "title": "Modelling and Sketching for Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1121", + "title": "Human-Centred Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1223", + "title": "History & Theory Of Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1321", + "title": "Materials For Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID1322", + "title": "Materials and Manufacturing for Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2041", + "title": "Design Internship", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2042", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 3, + 4 + ], + "preclusion": "Full-time undergraduate students who have accumulated more than 12MCs for previous internship stints.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "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.", + "corequisite": "" + }, + { + "moduleCode": "ID2101", + "title": "Design For the Tropical Environment", + "moduleCredit": 6, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2102", + "title": "Design For Context & Connectivity", + "moduleCredit": 6, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Module not offered to non-industrial design students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR1101 Basic Design & Communication ? Grade 'C 'AR1102 Design for Interface ? Grade 'C '", + "corequisite": "" + }, + { + "moduleCode": "ID2105", + "title": "Design for Context and Sustainability", + "moduleCredit": 8, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass ID 1105 & 1106", + "corequisite": "" + }, + { + "moduleCode": "ID2106", + "title": "Design Platforms 1", + "moduleCredit": 10, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass ID 1105 & 1106", + "corequisite": "" + }, + { + "moduleCode": "ID2111", + "title": "Computer Aided Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2112", + "title": "Digital Design & Fabrication", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2113", + "title": "Visual Communication Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2114", + "title": "The Appreciation of Wood Craft", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Some prior workshop or model-making experience", + "corequisite": "" + }, + { + "moduleCode": "ID2115", + "title": "Digital Sketching and Painting", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2116", + "title": "Computing for Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2122", + "title": "Ecodesign And Sustainability", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2123", + "title": "Design Process & Research", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2323", + "title": "Technology for Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID2324", + "title": "Manufacturing for Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID3041", + "title": "Special Studies", + "moduleCredit": 14, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Student who read ID3041 must have completed at least 60 MC. (i.e. students will be able to read this module in Year 2, second semester onwards.)", + "corequisite": "" + }, + { + "moduleCode": "ID3101", + "title": "Design 5", + "moduleCredit": 12, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Module not offered to non-industrial design students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AR2101 Design for the Tropical Environment ?Grade 'C 'ID2102 Design for Context & Connectivity ? Grade 'C '", + "corequisite": "" + }, + { + "moduleCode": "ID3102", + "title": "Design For Culture & Identity", + "moduleCredit": 8, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID3105", + "title": "Design Platforms 2", + "moduleCredit": 10, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass ID 2105 & 2106", + "corequisite": "" + }, + { + "moduleCode": "ID3106", + "title": "Design Platforms 3", + "moduleCredit": 10, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass ID 2105 & 2106", + "corequisite": "" + }, + { + "moduleCode": "ID3122", + "title": "Innovation and Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID3123", + "title": "Interaction Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID3124", + "title": "Creative Communication & Design Argumentation", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID3125", + "title": "Colours, Materials & Finishing", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID3127", + "title": "Transdisciplinary Innovation Project", + "moduleCredit": 5, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "3rd and 4th year undergraduate students", + "corequisite": "" + }, + { + "moduleCode": "ID4103", + "title": "Design Detailing", + "moduleCredit": 12, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "Module not offered to non-industrial design students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass ID3103 & ID3104", + "corequisite": "" + }, + { + "moduleCode": "ID4105", + "title": "Design Platforms 4", + "moduleCredit": 10, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass ID 3105 & 3106", + "corequisite": "" + }, + { + "moduleCode": "ID4106", + "title": "Design Thesis Project", + "moduleCredit": 12, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Pass ID3103 & ID3104 or ID3105 and 3106", + "corequisite": "" + }, + { + "moduleCode": "ID4121", + "title": "Project Research", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5021", + "title": "Design Research", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5151", + "title": "Design Innovation", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5351", + "title": "Design Studies", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5770", + "title": "Graduate Seminar Module in Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5951", + "title": "Topics in Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5951A", + "title": "Topics in Industrial Design: Product Development", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5951B", + "title": "Topics in Industrial Design: Interaction Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5951C", + "title": "Topics in Industrial Design: Healthcare Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5951D", + "title": "Topics in Industrial Design: Design Education", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID5951E", + "title": "Topics in Industrial Design: Sustainability", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ID6770", + "title": "Doctoral Seminar Module in Industrial Design", + "moduleCredit": 4, + "department": "Industrial Design", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE1111", + "title": "ISE Principles and Practice I", + "moduleCredit": 6, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE1111R", + "title": "Industrial & Systems Engrg Principles & Practice I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "IE1111", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE1112", + "title": "ISE Principles and Practice II", + "moduleCredit": 6, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE1111 ISE Principles and Practices I", + "corequisite": "" + }, + { + "moduleCode": "IE1113", + "title": "Introduction to Systems Analytics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE1111 ISE Principles and Practices I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE1114", + "title": "Introduction to Systems Thinking and Dynamics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE1112 ISE Principles and Practices II\nIE2101 Introduction to Systems Thinking", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE1113 Introduction to Systems Analytics", + "corequisite": "" + }, + { + "moduleCode": "IE2010E", + "title": "Introduction to Industrial System", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3161, TIE2010", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2020E", + "title": "Probability and Statistics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "IE2120E, TIE2120, TIE2020", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2100", + "title": "Probability Models With Applications", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "DBA3711", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2334\nor EE2012 \nor CE2407\nor BN2102", + "corequisite": "" + }, + { + "moduleCode": "IE2100E", + "title": "Probability Models with Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "DSC3215, TIE2100", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ST2131 or TS2120 or IE2120E" + }, + { + "moduleCode": "IE2110", + "title": "Operations Research I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "DBA3701, MA2215, MA3236", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2110E", + "title": "Operations Research I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "DSC3214, MA2215, MA3236, TIE2110", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "MA1102R or MA1505, MA1506, TE2102 or TG1401" + }, + { + "moduleCode": "IE2111", + "title": "Industrial & Systems Engrg Principles & Practice II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "IE2140\nIE2140", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2130", + "title": "Quality Engineering I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2334 or EE2012 or CE2407 or BN2102", + "corequisite": "" + }, + { + "moduleCode": "IE2130E", + "title": "Quality Engineering I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TM4271, TIE2130", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "MA1505, MA1506 or SA1101, or ST1131, or ST1131A, or ST1232, or ST2334 or TE2102 or TG1401 or TM1401 or TS2120 or IE2120E" + }, + { + "moduleCode": "IE2140", + "title": "Engineering Economy", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2140E", + "title": "Engineering Economy", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TIE2140", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2141", + "title": "Systems Thinking and Dynamics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "IE2101, Junior Seminar modules in RC4, GEM1915/GET1011", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2150E", + "title": "Human Factors Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TIE2150", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE2290", + "title": "A cross cultural industrial field trip program", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Stage 2 standing", + "corequisite": "" + }, + { + "moduleCode": "IE3010E", + "title": "Systems Thinking and Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TIE3010", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE3100E", + "title": "Systems Design Project", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TIE3100", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Level 3 Standing", + "corequisite": "" + }, + { + "moduleCode": "IE3100M", + "title": "System Design Project", + "moduleCredit": 12, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "IE2100, IE2110, IE1112", + "corequisite": "IE2101 - Introduction to Systems Thinking" + }, + { + "moduleCode": "IE3101", + "title": "Statistics For Engineering Applications", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2334 or EE2012 or CE2407 or BN2102", + "corequisite": "" + }, + { + "moduleCode": "IE3101E", + "title": "Statistics for Engineering Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TIE3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ST1131, ST2131 or ST1232 or TS2120 or IE2120E" + }, + { + "moduleCode": "IE3102", + "title": "Systems Engineering Project", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "IE3100M", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE1112, IE2110, IE2150, IE3105", + "corequisite": "" + }, + { + "moduleCode": "IE3105", + "title": "Fundamentals of Systems Engineering and Architecture", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE3110", + "title": "Simulation", + "moduleCredit": 5, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "DSC3221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100 or DSC3215", + "corequisite": "" + }, + { + "moduleCode": "IE3110E", + "title": "Simulation", + "moduleCredit": 5, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "DSC3221, TIE3110", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "IE2100E or DSC3215" + }, + { + "moduleCode": "IE3110R", + "title": "Simulation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "DSC3221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100 or DSC3215", + "corequisite": "" + }, + { + "moduleCode": "IE3120", + "title": "Manufacturing Logistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100 or DBA3711", + "corequisite": "" + }, + { + "moduleCode": "IE3250", + "title": "Human Factors Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE4068", + "title": "Exchange Elective", + "moduleCredit": 3, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE4100E", + "title": "BTech Dissertation", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "IE4101E, TIE4101", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 Standing", + "corequisite": "" + }, + { + "moduleCode": "IE4100R", + "title": "B.Eng.Dissertation", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "IE4102", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "ISE B.Eng. 4 standing", + "corequisite": "" + }, + { + "moduleCode": "IE4101E", + "title": "B.Tech. Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TIE4101, IE4100E", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "IE4102", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "IE4100R", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Stage 4 Standing", + "corequisite": "" + }, + { + "moduleCode": "IE4210", + "title": "Operations Research II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2110", + "corequisite": "" + }, + { + "moduleCode": "IE4211", + "title": "Modelling & Analytics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2334 or EE2012 or CE2407 or BN2102", + "corequisite": "" + }, + { + "moduleCode": "IE4213", + "title": "Learning from Data", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE3101 Statistics For Engineering Applications", + "corequisite": "" + }, + { + "moduleCode": "IE4220", + "title": "Supply Chain Modelling", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100 and IE2110", + "corequisite": "" + }, + { + "moduleCode": "IE4220E", + "title": "Supply Chain Modelling", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TIE4220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "IE2100E & IE2110E" + }, + { + "moduleCode": "IE4221", + "title": "Transportation Demand Modeling and Economics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2110 Operations Research I", + "corequisite": "" + }, + { + "moduleCode": "IE4229", + "title": "Selected Topics In Logistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2110", + "corequisite": "" + }, + { + "moduleCode": "IE4229E", + "title": "Selected Topics in Logistics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TIE4229", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2110E Operations Research I", + "corequisite": "" + }, + { + "moduleCode": "IE4230", + "title": "Quality Engineering II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE3101", + "corequisite": "" + }, + { + "moduleCode": "IE4230E", + "title": "Quality Engineering II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TIE4230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "IE2130E & IE3101E" + }, + { + "moduleCode": "IE4231", + "title": "Statistical Methods for Process Design and Control", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE3101 Statistics for Engineering Applications", + "corequisite": "" + }, + { + "moduleCode": "IE4239", + "title": "Selected Topics In Quality Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100, IE3101", + "corequisite": "" + }, + { + "moduleCode": "IE4239E", + "title": "Selected Topics in Quality Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TIE4239", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100E Probability Models with Applications\nIE3101E Statistics for Engineering Application", + "corequisite": "" + }, + { + "moduleCode": "IE4240", + "title": "Project Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2111", + "corequisite": "" + }, + { + "moduleCode": "IE4240E", + "title": "Project Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TIE4240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "IE2140E" + }, + { + "moduleCode": "IE4241", + "title": "Work, Technology And Organization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001", + "corequisite": "" + }, + { + "moduleCode": "IE4242", + "title": "Cost Analysis And Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ACC2002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2111", + "corequisite": "" + }, + { + "moduleCode": "IE4242E", + "title": "Cost Analysis And Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TIE4242", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2140E", + "corequisite": "" + }, + { + "moduleCode": "IE4243", + "title": "Decision Modeling & Risk Analysis", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100, IE2111", + "corequisite": "" + }, + { + "moduleCode": "IE4244", + "title": "Energy: Security, Competitiveness and Sustainability", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE1112", + "corequisite": "" + }, + { + "moduleCode": "IE4249", + "title": "Selected Topics In Engineering Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2111", + "corequisite": "" + }, + { + "moduleCode": "IE4249E", + "title": "Selected Topics in Engineering Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TIE4249", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2140E Engineering Economy", + "corequisite": "" + }, + { + "moduleCode": "IE4250", + "title": "System Dynamics Modelling", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2111", + "corequisite": "" + }, + { + "moduleCode": "IE4251", + "title": "Process Analysis and Redesign", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE4252", + "title": "Human Factors Engineering: Cases and Tools", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE 2150 Human Factors Engineering and Design", + "corequisite": "" + }, + { + "moduleCode": "IE4259", + "title": "Selected Topics in Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE4259E", + "title": "Selected Topics in Systems Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TIE4259", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE4269", + "title": "Selected Topics in Economics and Service Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2140 Engineering Economy", + "corequisite": "" + }, + { + "moduleCode": "IE4299", + "title": "Selected Topics In Industrial Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2100, IE2110", + "corequisite": "" + }, + { + "moduleCode": "IE4299E", + "title": "Selected Topics in Industrial Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TIE4299", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2010E Introduction to Industrial System", + "corequisite": "" + }, + { + "moduleCode": "IE5001", + "title": "Operations Planning and Control I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "BDC5101 Deterministic Operations Research Models", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5001A", + "title": "Linear Programming and Network Models", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5001 Operations Planning and Control I", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5001B", + "title": "Advanced Models and Techniques", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5001 Operations Planning and Control I", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5002", + "title": "Applied Engineering Statistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5003", + "title": "Cost Analysis and Engineering Economy", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5004", + "title": "Engineering Probability And Simulation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5105", + "title": "Modelling for Supply Chain Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "IE5401 Industrial Logistics\nIE5405 Inventory Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5105A", + "title": "Supply Chain: Performance Drivers and Inventory", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5105 Modeling for Supply Chain Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5105B", + "title": "Supply Chain: Distribution and Transportation", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5105 Modeling for Supply Chain Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5107", + "title": "Material Flow Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5108", + "title": "Facility Layout And Location", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5121", + "title": "Quality Planning And Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5122", + "title": "Statistical Quality Control", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5123", + "title": "Reliability Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5125", + "title": "Software Quality Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5202", + "title": "Applied Forecasting Methods", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5203", + "title": "Decision Analysis", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5205", + "title": "Healthcare System and Analytics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5206", + "title": "Energy and Sustainability: A Systems Approach", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "IE4244 Energy; Security, Competitiveness and Sustainability", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5208", + "title": "Systems Approach To Project Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5211", + "title": "New Product Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT5006 Strategic and New Product Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5212", + "title": "Management of Technological Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "MT5007 Management of Technological Innovation", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5213", + "title": "Service Innovation And Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5214", + "title": "Infocomm Systems Project Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5268", + "title": "Theory and algorithms for nonlinear optimization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "MA5268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3252 Linear and Network Optimisation or BDC6111/IE6001 Foundations on Optimization or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "IE5291", + "title": "Topics in Engineering Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5301", + "title": "Human Factors In Engineering And Design", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5307", + "title": "Topics in Human Factors Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5401", + "title": "Industrial Logistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5402", + "title": "Introduction to Systems Engineering and Architecture", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5403", + "title": "Systems Engineering Case Studies", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5404", + "title": "Large Scale Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5405", + "title": "Inventory Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5407", + "title": "Flexibility in Engineering Systems Design", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "IE5004 – Engineering Probability and Simulation (or equivalent)", + "corequisite": "" + }, + { + "moduleCode": "IE5504", + "title": "Systems Modelling And Advanced Simulation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5506", + "title": "Computer-Based Decision Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5600", + "title": "Applied Programming for Industrial Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5601", + "title": "Communicating Industrial Analytics Solutions", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5602", + "title": "Statistical Learning in Engineering I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5603", + "title": "Statistical Learning in Engineering II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5604", + "title": "Optimisation Modelling and Applications", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5605", + "title": "Simulation-driven Analytics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Foundation in fundamental statistics", + "corequisite": "" + }, + { + "moduleCode": "IE5611", + "title": "Problem Solving in Industrial Analytics", + "moduleCredit": 6, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5612", + "title": "Industrial Analytics Practicum", + "moduleCredit": 12, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5766", + "title": "Industrial & Systems Engineering Attachment", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5866", + "title": "Industrial & Systems Engineering Internship", + "moduleCredit": 12, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5880", + "title": "Topics in Supply Chain Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "IE5105 Introduction to Supply Chain Systems", + "corequisite": "" + }, + { + "moduleCode": "IE5901", + "title": "Independent Study in L&OR", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5902", + "title": "Research Project in L&OR", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5903", + "title": "Independent Study in PM", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5904", + "title": "Research Project in PM", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5904A", + "title": "Research Project in Project Management I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5904B", + "title": "Research Project in Project Management II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "IE5904A Research Project in Project Management I", + "corequisite": "" + }, + { + "moduleCode": "IE5905", + "title": "Independent Study In Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5906A", + "title": "Research Project in Systems Engineering I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5906B", + "title": "Research Project in Systems Engineering II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "IE5906A Research Project in Service Systems I", + "corequisite": "" + }, + { + "moduleCode": "IE5907", + "title": "Independent Study in Operations Research", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5908A", + "title": "Research Project in Operations Research I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE5908B", + "title": "Research Project in Operations Research II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "IE5908A Research Project in Operations Research I", + "corequisite": "" + }, + { + "moduleCode": "IE5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6001", + "title": "Foundations of Optimization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "BDC6111 Foundations of Optimization", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6002", + "title": "Advanced Engineering Statistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6004", + "title": "Stochastic Processes I", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6112 Stochastic Process I", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6005", + "title": "Stochastic Models and Optimization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6099", + "title": "Ise Research Methodology", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6107", + "title": "Advanced Material Flow Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6108", + "title": "Advanced Facility Layout and Location", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6123", + "title": "Advanced Reliability Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6125", + "title": "Advanced Software Quality Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6203", + "title": "Advanced Decision Analysis", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6301", + "title": "Bayesian Modeling and Decision-Making", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6301", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BDC6112/IE6004 Stochastic Processes I", + "corequisite": "" + }, + { + "moduleCode": "IE6302", + "title": "Discrete Optimization and Algorithms", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6302", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BDC6111/IE6001 Foundations of Optimization", + "corequisite": "" + }, + { + "moduleCode": "IE6304", + "title": "Robust modelling and optimization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6304", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Theory of linear programming, including duality theory.\nBasic knowledge of algorithms and complexity.", + "corequisite": "" + }, + { + "moduleCode": "IE6307", + "title": "Introduction to Data Analytics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6307", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Calculus, Linear Algebra, Basic Probability Theory", + "corequisite": "" + }, + { + "moduleCode": "IE6401", + "title": "Advanced Topics in Industrial Logistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6405", + "title": "Advanced Inventory Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6499A", + "title": "Adv Topics in SE: Metaheuristic & Surrogate Optimization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Civil & Environmental Engineering / Industrial & Systems Engineering PhD-student standing (and students with no statistics background will need to do some extra reading)", + "corequisite": "" + }, + { + "moduleCode": "IE6505", + "title": "Stochastic Processes II", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "BDC6306 Stochastic Processes II", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "BDC6112/IE6004 Stochastic Processes I.", + "corequisite": "At least one undergraduate course in Calculus." + }, + { + "moduleCode": "IE6507", + "title": "Queues and Stochastic Networks", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6303 Queues and Stochastic Networks", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "IE6505/ BDC6306 Stochastic Processes II", + "corequisite": "" + }, + { + "moduleCode": "IE6509", + "title": "Theory and Algorithms for Dynamic Programming", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "BDC6305 Theory and Algorithms for Dynamic Programming", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Suitable mathematical maturity", + "corequisite": "" + }, + { + "moduleCode": "IE6511", + "title": "Surrogate and Metaheuristic Global Optimization", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "IE6499A Adv Topics in SE: Metaheuristic & Surrogate Optimization", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Student should be in a PhD program in Engineering or Physical Science or Decision Science (in Business School) or in PhD program of Operations Research Analytics Cluster.", + "corequisite": "" + }, + { + "moduleCode": "IE6520", + "title": "Theory and Algorithms for Online Learning", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic knowledge on probability, particularly on conditional probability and martingales, is required. Students from ISEM, IORA or DAO at the businese school are required to have taken BDC6112/IE6004: Stochastic Processes I..\n\nStudents outside ISEM, IORA or DAO should have taken a basic class in probability (graduate level), and feel free to contact the lecturer if you are in doubt about the prerequisite on probability. Basic knowledge on optimization or machine learning is desirable, but not required.", + "corequisite": "" + }, + { + "moduleCode": "IE6880", + "title": "Topics in Operations Research 1", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6881", + "title": "Topics in Data Science 1", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IE6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IEM2201E", + "title": "Ethics in Outer Space", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "Students who have already read an I&E II module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "I&E I", + "corequisite": "" + }, + { + "moduleCode": "IEU3550", + "title": "Extended Internship", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules (Note: Students who change major may not do a second internship in their new major).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in European Studies; and have declared European Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "IFS2200", + "title": "Information Security Immersion Programme", + "moduleCredit": 6, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 40 MCs.", + "corequisite": "" + }, + { + "moduleCode": "IFS4101", + "title": "Legal Aspects of Information Security", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2107", + "corequisite": "" + }, + { + "moduleCode": "IFS4102", + "title": "Digital Forensics", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235", + "corequisite": "" + }, + { + "moduleCode": "IFS4103", + "title": "Penetration Testing Practice", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235 Computer Security", + "corequisite": "" + }, + { + "moduleCode": "IFS4201", + "title": "Information Security Industry Capstone Project", + "moduleCredit": 8, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "IFS4205 (InfoSec capstone project)\nCS3205 (old code) has been changed to IFS4205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CP3880", + "corequisite": "" + }, + { + "moduleCode": "IFS4202", + "title": "Information Security Practicum Programme", + "moduleCredit": 6, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IFS4201", + "corequisite": "" + }, + { + "moduleCode": "IFS4205", + "title": "Information Security Capstone Project.", + "moduleCredit": 8, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "Students who have taken and passed CS3205 will not be allowed to take\nIFS4205.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS3235", + "corequisite": "" + }, + { + "moduleCode": "IGL3550", + "title": "Extended Global Studies Internship", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have completed a minimum of 24 MC in Global Studies including GL1101E and one of the following Core Modules GL2101, GL2102, GL2103; and have declared Global Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "IJS3550", + "title": "Extended Internship", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules (Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in JS; and have declared JS as their Major.", + "corequisite": "" + }, + { + "moduleCode": "IL5101", + "title": "Strategic Alignment of Business and IT", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5102", + "title": "IT Innovation Leadership", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5103", + "title": "Business and IT Financial Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5104", + "title": "Process and Operational Excellence", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5105", + "title": "Fundamentals of IT Leadership Transformation", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5106", + "title": "Leading Change for IT Leaders", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5107", + "title": "IT Leadership Capstone Project", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IL5105 Fundamentals of IT Leadership Transformation IL5101 Strategic Alignment of Business and IT", + "corequisite": "" + }, + { + "moduleCode": "IL5201", + "title": "Measuring and Demonstrating Value from IT Investments", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5202", + "title": "IT Governance and Risk Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5203", + "title": "IT Organisation Development and Talent Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5204", + "title": "Stakeholder Relationship Management in the IT Eco-System", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5801", + "title": "Practice of Digital Business", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5802", + "title": "Digital Transformation", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IL5803", + "title": "Digital Leadership and People", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5001", + "title": "Introduction to Industry 4.0 and Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5002", + "title": "Digital-Physical Integration in Industry 4.0", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5003", + "title": "Data Analytics for Sense-making", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5004", + "title": "Digital Infrastructure and Transformation", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "IS5002 Digital Transformation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5005", + "title": "Industry Consulting and Application Project", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed at least 16 MCs or programme requirements including two core modules (One of which must be IND5001 Introduction to Industry 4.0 and Applications)", + "corequisite": "" + }, + { + "moduleCode": "IND5005A", + "title": "Professional Career Development", + "moduleCredit": null, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5005B", + "title": "Industry Consulting and Application Project", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass at least 16 MCs with two core modules including\nIND5001.", + "corequisite": "" + }, + { + "moduleCode": "IND5021", + "title": "Managing the Digital Supply Chain", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5022", + "title": "Data Analytics for Smart Manufacturing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5023", + "title": "Managing the Financial Supply Chain", + "moduleCredit": 2, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "DSC5211A Supply Chain Coordination and Risk Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IND5024", + "title": "Strategic Procurement in a Digital World", + "moduleCredit": 2, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "INM3550", + "title": "Extended Internship", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other series-internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) For NM Major only,\n(2) Read and pass a minimum of 80 MCs AND\n(3) Must read NM3550 concurrently", + "corequisite": "" + }, + { + "moduleCode": "IPS3550", + "title": "Extended Political Science Internship", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should:\n- have completed a minimum of 24 MC in Political Science; and\n- have declared Political Science as their Major.", + "corequisite": "" + }, + { + "moduleCode": "IS1103", + "title": "Ethics in Computing", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS2101", + "title": "Business and Technical Communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "ES2002, ES2007D, CS2101, CS2103T and ES1601.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to read ES1000 and/or ES1102/ES1103 must pass it/them before taking IS2101.", + "corequisite": "" + }, + { + "moduleCode": "IS2102", + "title": "Enterprise Systems Architecture and Design", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or (CS2030 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "IS2103", + "title": "Enterprise Systems Server-side Design and Development", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or its equivalent) or (CS2030 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "IS2150", + "title": "E-Business Design and Implementation", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or CS1102 or CS1102S) and IS1112", + "corequisite": "" + }, + { + "moduleCode": "IS3101", + "title": "Management of Information Systems", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3253", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2250 or (IS1103 and IS1105)", + "corequisite": "" + }, + { + "moduleCode": "IS3102", + "title": "Enterprise Systems Development Project", + "moduleCredit": 8, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "CS3214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2261 or IS2103 (applicable to intakes from AY2005/06 to AY2007/08) or [(CS2261 or IS2103) and (CS2301 or IS2101)] (applicable to intakes from AY2008/09 onwards)", + "corequisite": "" + }, + { + "moduleCode": "IS3103", + "title": "Information Systems Leadership and Communication", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "IS3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(IS1103 or equivalent) and (CS2101 or IS2101)", + "corequisite": "" + }, + { + "moduleCode": "IS3106", + "title": "Enterprise Systems Interface Design and Development", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS3226", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2103", + "corequisite": "" + }, + { + "moduleCode": "IS3150", + "title": "Digital Media Marketing", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2101", + "corequisite": "" + }, + { + "moduleCode": "IS3221", + "title": "ERP Systems with Analytics Solutions", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CS1010 or equivalent) and (IS1103 or IS1103FC or IS1103X)] or [(CS1010 or equivalent) and BT1101] or [DAO2702 and IT3010]", + "corequisite": "" + }, + { + "moduleCode": "IS3223", + "title": "IT and Supply Chain Management", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4267", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass 60 MCs and [CS2250 or (IS1103 and IS1105)]", + "corequisite": "" + }, + { + "moduleCode": "IS3240", + "title": "Digital Platform Strategy and Architecture", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS1103/X and (IS2102 or BT2102)", + "corequisite": "" + }, + { + "moduleCode": "IS3251", + "title": "Principles of Technology Entrepreneurship", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS1103 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "IS3261", + "title": "Mobile Apps Development for Enterprise", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1020 or equivalent) or CS2020 or (CS2030 or its equivalent) or (CS2040 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "IS4010", + "title": "Industry Internship Programme", + "moduleCredit": 12, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[IS2101 or CS2101] and [IS1105 or IS3101 or IS3103] and [IS2103 or CS2107 or (BT2101 and BT2102)]", + "corequisite": "" + }, + { + "moduleCode": "IS4100", + "title": "IT Project Management", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "IS5110 and CS5212(old code for IS5110)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2102 and IS2103 and [(IS1103 or equivalent) or EG2401]", + "corequisite": "" + }, + { + "moduleCode": "IS4102", + "title": "E-Business Capstone Project", + "moduleCredit": 8, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass 80 MCs and [CS3240, IS2150, IS3230 and IS3150]", + "corequisite": "" + }, + { + "moduleCode": "IS4103", + "title": "Information Systems Capstone Project", + "moduleCredit": 8, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "IS3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2101, IS2102, IS2103 and IS3106", + "corequisite": "" + }, + { + "moduleCode": "IS4150", + "title": "Mobile and Ubiquitous Commerce", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass 80 MCs and IS2150", + "corequisite": "" + }, + { + "moduleCode": "IS4151", + "title": "Pervasive Technology Solutions and Development", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "IS4150, IS5451, SMA5508, and SG5233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2103 and IS3106", + "corequisite": "" + }, + { + "moduleCode": "IS4152", + "title": "Affective Computing", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS4242 or IS4303 or CS3244 or BT4240", + "corequisite": "" + }, + { + "moduleCode": "IS4204", + "title": "IT Governance", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3101 or IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS4228", + "title": "Information Technologies in Financial Services", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3101 or IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS4231", + "title": "Information Security Management", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS3254", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2107", + "corequisite": "" + }, + { + "moduleCode": "IS4233", + "title": "Legal Aspects of Information Technology", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS4259", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3101 or IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS4234", + "title": "Compliance and Regulation Technology", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(IS2102 and IS2103) or CS2103/T or CS2113/T", + "corequisite": "" + }, + { + "moduleCode": "IS4240", + "title": "Business Intelligence Systems", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(IS1103 or equivalent) and (ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "IS4241", + "title": "Social Media Network Analysis", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[(CS1010 or equivalent) and (IS1103 or IS1103FC or IS1103X)] or [(CS1010 or equivalent) and BT1101] or [DAO2702 and IT3010]", + "corequisite": "" + }, + { + "moduleCode": "IS4242", + "title": "Intelligent Systems and Techniques", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[MA1312 or MA1521 or MA1505 or (MA1511 and MA1512)] and [ST2334 or ST2131 or ST2132] and [IS3106 or BT3103]", + "corequisite": "" + }, + { + "moduleCode": "IS4243", + "title": "Information Systems Consulting", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3101 or IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS4250", + "title": "IT-enabled Healthcare Solutioning", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS1103 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "IS4260", + "title": "E-Commerce Business Models", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "CS4260", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass 80 MCs and [CS2250 or (IS1103 and IS1105)]", + "corequisite": "" + }, + { + "moduleCode": "IS4261", + "title": "Designing IT-enabled Business Innovations", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3103 or IS3101", + "corequisite": "" + }, + { + "moduleCode": "IS4301", + "title": "Agile IT with DevOps", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS4100", + "corequisite": "" + }, + { + "moduleCode": "IS4302", + "title": "Blockchain and Distributed Ledger Technologies", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS2102 or BT2102) and ((CS1020 or its equivalent) or (CS2030 or its equivalent) or CS2103/T or CS2113/T)", + "corequisite": "" + }, + { + "moduleCode": "IS4303", + "title": "IT-mediated financial solutions and platforms", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2102", + "corequisite": "" + }, + { + "moduleCode": "IS5002", + "title": "Digital Transformation", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2102", + "corequisite": "" + }, + { + "moduleCode": "IS5003", + "title": "Platform Design and Economy", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "IS3240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2102", + "corequisite": "" + }, + { + "moduleCode": "IS5004", + "title": "Enterprise Architecture", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2102", + "corequisite": "" + }, + { + "moduleCode": "IS5005", + "title": "Digital Engagement", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3150", + "corequisite": "" + }, + { + "moduleCode": "IS5006", + "title": "Intelligent System Deployment", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS4242 or BT4014", + "corequisite": "" + }, + { + "moduleCode": "IS5007", + "title": "Strategising for Global IT-enabled Business Success", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS4204", + "corequisite": "" + }, + { + "moduleCode": "IS5008", + "title": "Technology Risk & Cyber Resilience", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS5009", + "title": "Topics in Financial Technology Solutions", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "BT4013", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS5110", + "title": "Software Project Management", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "IS4100", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS5111", + "title": "IT Strategy and Governance", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "IS4204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS5114", + "title": "Global IT Project and Vendor Management", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS5116", + "title": "Digital Entrepreneurship", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "IS3251", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS5117", + "title": "Digital Government", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS5126", + "title": "Hands-on with Applied Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "BT5126 Hands-on with Business Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS5128", + "title": "Digital Innovation", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2102 and IS3103", + "corequisite": "" + }, + { + "moduleCode": "IS5151", + "title": "Information Security Policy and Management", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "IS4231", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS2107", + "corequisite": "" + }, + { + "moduleCode": "IS5152", + "title": "Data-Driven Decision Making", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2334 or ST1131", + "corequisite": "" + }, + { + "moduleCode": "IS5451", + "title": "Pervasive Technology Solutions and Development", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "IS4151, IS4150, SMA5508, and SG5233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6000", + "title": "Qualifying Examination in IS", + "moduleCredit": 6, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6001", + "title": "Qualitative Methods for IS Research", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6002", + "title": "Quantitative Methods for IS Research", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6003", + "title": "Contemporary Theories for IS Research", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6004", + "title": "Econometrics for IS Research", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6005", + "title": "Seminars in Information Systems I", + "moduleCredit": 2, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6100", + "title": "Information Systems Research", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6102", + "title": "Topics in Information Systems Ii", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6103", + "title": "Design Science Research in Information Systems", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6201", + "title": "Seminars in Information System Ii", + "moduleCredit": 2, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IS6202", + "title": "Seminars in Information System Iii", + "moduleCredit": 2, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISC3550", + "title": "Extended Sociology Internship", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 3, + 4 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have:\n- Completed at least 60 MCs in total (about 3 semesters), including 24 MCs in Sociology (6 modules), and declared Sociology as their Major\n(including as Second Major).\n- Completed SC1101E Making Sense of Society and SC2101 Social Research Methods.", + "corequisite": "" + }, + { + "moduleCode": "ISD5101", + "title": "Integrated Studio Project 1", + "moduleCredit": 8, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISD5102", + "title": "Integrated Studio Project 2", + "moduleCredit": 8, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISD5103", + "title": "Green Buildings in the Tropics", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISD5104", + "title": "Energy and Ecology", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISD5105", + "title": "Principles of Sustainable Urbanism", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISD5106", + "title": "Sustainability Models and Blueprints", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISE3550", + "title": "Extended Internship", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any other XX3550 module. [Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in Southeast Asian Studies; and have declared Southeast Asian Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "ISN3550", + "title": "Extended South Asian Internship", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in South Asian Studies ; and\nhave declared South Asian Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "ISY5001", + "title": "Intelligent Reasoning Systems", + "moduleCredit": 11, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISY5002", + "title": "Pattern Recognition Systems", + "moduleCredit": 13, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISY5003", + "title": "Intelligent Robotic Systems", + "moduleCredit": 13, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISY5004", + "title": "Intelligent Sensing Systems", + "moduleCredit": 10, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISY5005", + "title": "Intelligent Software Agents", + "moduleCredit": 10, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ISY5007", + "title": "Capstone Project in Intelligent Systems", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ISY5001: Intelligent Reasoning systems\nISY5002: Pattern Recognition Systems", + "corequisite": "" + }, + { + "moduleCode": "IT1001", + "title": "Introduction to Computing", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1010 or CS1010E, CS1010FC, CS1010S, CS1101, CS1101C, CS1101S, GEK1511. SoC students and engineering students. Science students requiring this module for their minor should not register it as ULR-Breadth. Arts and Social Science students reading CNM as a subject/concentration and matriculated before AY2001/02 are not allowed to read this module as URL-Breadth", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IT1007", + "title": "Introduction to Programming with Python and C", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS1010 or its equivalents, IT1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IT2001", + "title": "Network Technology and Applications", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "CS2105, EE3204/E, EE4210; SoC, EEE & CPE students are not allowed to take this module. Arts and social sciences students reading CNM as a subject/concentration are not allowed to read this module as CFM/URL-Breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010 or its equivalent) or GEK1511 or IT1001", + "corequisite": "" + }, + { + "moduleCode": "IT2002", + "title": "Database Technology and Management", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "CS2102 or CS2102S. SoC students and Arts and social sciences students reading CNM as a subject/concentration are not allowed to \nread this module as CFM/ULR-Breadth.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010 or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "IT3010", + "title": "Data Management for Business Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "BT2102 and CS2102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "DAO2702 or (CS1010S or its equivalent)", + "corequisite": "" + }, + { + "moduleCode": "IT3011", + "title": "Introduction to Machine Learning and Applications", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 2 + ], + "preclusion": "CS3244, BT4240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010 or its equivalent) and (MA1101R or MA1311 or MA1508E or MA1513) and \n(MA1102R or MA1505 or MA1507 or (MA1511 and MA1512) or MA1521) and \n(EE2012/A or MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "IT5001", + "title": "Software Development Fundamentals", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "IT5002", + "title": "Computer Systems and Applications", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "IT5001" + }, + { + "moduleCode": "IT5003", + "title": "Data Structures and Algorithms", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "IT5001" + }, + { + "moduleCode": "IT5004", + "title": "Enterprise Systems Architecture Fundamentals", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "IS2102", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "IT5001" + }, + { + "moduleCode": "IT5005", + "title": "Artificial Intelligence", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IT5001 Software Development Fundamentals", + "corequisite": "" + }, + { + "moduleCode": "IT5006", + "title": "Fundamentals of Data Analytics", + "moduleCredit": 4, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "BT5126 Hands-on with business analytics\nIS5126 Hands-on with applied analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IT5001 Software Development Fundamentals", + "corequisite": "" + }, + { + "moduleCode": "IY4000", + "title": "Independent Study Module", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS1101E", + "title": "Introduction to Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2101", + "title": "Approaches to Japanese Studies I", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "JS1101E", + "corequisite": "" + }, + { + "moduleCode": "JS2203", + "title": "Sound, Grammar and Meaning", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ2201 or pass in JLPT level N5/level 4 or placement test", + "corequisite": "" + }, + { + "moduleCode": "JS2212", + "title": "Introduction to Japanese Literature", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2213", + "title": "Popular Culture in Contemporary Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2214", + "title": "Ideas and Images in Japanese Culture", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2216", + "title": "Postwar Japanese Film and Anime", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2221", + "title": "Organisation of Japanese Business", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2222", + "title": "Japanese Society and Social Institutions", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2223", + "title": "Government and Politics of Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2225", + "title": "Marketing and Consumer Culture in Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2226", + "title": "Global City Tokyo", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2227", + "title": "Japan and China: Rivals and Partners", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2228", + "title": "Gender and Sexuality in Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2229", + "title": "The Japanese Experience", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2230", + "title": "Itadakimasu - Food In Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2231", + "title": "Japan in Southeast Asia", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2232", + "title": "Japan and Korea", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2880", + "title": "Field Exposure Japan", + "moduleCredit": 2, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS2880A", + "title": "Field Exposure Japan: Fashion Business", + "moduleCredit": 2, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3101", + "title": "Approaches to Japanese Studies II", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is for students who major in Japanese Studies. Students should have completed JS2101 Approaches to Japanese Studies I and at least LAJ2202 Japanese 3 (or equivalent Japanese language skills).", + "corequisite": "" + }, + { + "moduleCode": "JS3208", + "title": "Approaches to Japanese Linguistics", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ2202 or pass in JLPT level 3 or placement test.", + "corequisite": "" + }, + { + "moduleCode": "JS3210", + "title": "Japan in the Twentieth Century", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3211", + "title": "Modern Japanese Religion", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3213", + "title": "Alternative Lives in Contemporary Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3214", + "title": "Japanese Philosophy and Thought", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3216", + "title": "Japanese Film and Literature", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3217", + "title": "Japanese Art and Aesthetics", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3222", + "title": "Japanese Business Management", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3223", + "title": "Japan and the Asia-Pacific Region", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3225", + "title": "Japanese Mass Media", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3226", + "title": "Japan: The Green Nation?", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3227", + "title": "Entrepreneurship : Self-Made in Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3228", + "title": "Japan on the Move", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3229", + "title": "Field Studies in Japan", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ2202 or pass in JLPT level 3 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "JS3230", + "title": "Men and Women in Modern Japanese Literature", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS3550", + "title": "Internship", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules (Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in JS; and have declared JS as their Major.", + "corequisite": "" + }, + { + "moduleCode": "JS4101", + "title": "Research and Writing in Japanese Studies", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "JS4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nCompleted 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.50 or be on the Honours track.\n\nCohort 2012 onwards:\nCompleted 80 MCs, including 28 MCs in JS or 28MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20\nor be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4207", + "title": "Readings in Modern Japanese", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ3201 or LAJ3203 or pass in JLPT Levels 2 or 1 / GCE ‘AO’ or ‘A’ Level Japanese or placement test AND completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4208", + "title": "Japanese Language and Society", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ2202 or placement test AND completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4209", + "title": "Selected Topics in Japanese Linguistics", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ2202 or placement test AND completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4211", + "title": "Japanese Culture and Communications", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4213", + "title": "Approaches to Modern Japanese History", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "HY4218", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4214", + "title": "Ideas, Values and Identity in Japan", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4216", + "title": "Tales and Performance in Premodern Japan", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4217", + "title": "Selected Topics in Japanese Studies", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4223", + "title": "Japanese Public Policy", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4224", + "title": "Japanese International Relations", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in PS or 28 MCs in GL/GL recognized non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4225", + "title": "Social Dynamics in Modern Japan", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4227", + "title": "Japanese Political Economy", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in PS or 28MCs in GL/GL recognized non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4229", + "title": "Japanese Translation - Theory & Practice", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ3202 or pass in JLPT level 1 or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "JS4230", + "title": "Advanced Readings in Popular Culture", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in JS or 28 MCs in SC or 28 MCs in GL/GL recognized non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4231", + "title": "Technologies and Traditional Japanese Theatre", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4232", + "title": "FDI and Local Development: Japanese Firms in Asia", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in JS or 28 MCs in SN or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in JS or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4233", + "title": "Japan’s Immigration Politics in Global Perspective", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in JS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "JS4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "JS4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 110 MCs including 60 MCs of JS major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of JS major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "JS4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "JS4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in JS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards: \nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in JS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "JS5201", + "title": "Readings in Japanese Studies I", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5201R", + "title": "Readings in Japanese Studies", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5202", + "title": "Reading in Japanese Studies Ii", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5202R", + "title": "Reading in Japanese Studies Ii", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5203", + "title": "Japanese Literary & Performance Studies", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5203R", + "title": "Japanese Literary & Performance Studies", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5204", + "title": "Contemporary Japanese Social Issues", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5204R", + "title": "Contemporary Japanese Social Issues", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5205", + "title": "Reading of Japanese Historical Sources", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS5660R", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS6201", + "title": "Readings in Japanese History & Society", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS6202", + "title": "Readings in Japanese Politics & Economics", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS6203", + "title": "Readings in Japanese Literature & Culture", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS6204", + "title": "Readings in Japanese Linguistics", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "JS6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4001", + "title": "Fundamentals of Knowledge Engineering", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4002", + "title": "Case Based Reasoning", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4003", + "title": "Fuzzy Systems", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4004", + "title": "Business Analytics", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4005", + "title": "Introduction to Knowledge Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4101", + "title": "Fundamentals of Knowledge Engineering", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4102", + "title": "Intelligent Systems and Techniques for Business Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4202", + "title": "Case Based Reasoning", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4203", + "title": "Fuzzy Systems", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4204", + "title": "Business Analytics", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE4205", + "title": "Introduction to Knowledge Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5001", + "title": "Kbs Development", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5002", + "title": "Advanced Artificial Intelligence Techniques", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5003", + "title": "Hybrid Ke Systems", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5004", + "title": "Genetic Algorithms", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5005", + "title": "Text Mining", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5006", + "title": "Applied Research", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5101", + "title": "Kbs Development", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5102", + "title": "Advanced Techniques", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5103", + "title": "Hybrid Ke Systems", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5105", + "title": "Knowledge Engineering Project", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5106", + "title": "Data Warehousing for Business Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5107", + "title": "Data Mining Methodology and Methods", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5108", + "title": "Developing Intelligent Systems for Performing Business Analytics", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "KE4102 Intelligent Systems and Techniques for Business Analytics \nKE5107 Data Mining Methodology and Methods", + "corequisite": "" + }, + { + "moduleCode": "KE5109", + "title": "Knowledge Engineering Overseas Practicum", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "Students that select KE5105 Knowledge Engineering Project cannot also select the Knowledge Engineering Overseas Practicum and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Before commencing the Knowledge Engineering Overseas Practicum, the students must successfully complete the four MTech KE core courses:\n\nKE4102 Intelligent Systems and Techniques for Business Analytics\nKE5106 Data Warehousing for Business Analytics\nKE5107 Data Mining Methodology and Methods\nKE5108 Developing Intelligent Systems for Performing Business Analytics\n\nIn addition, they must demonstrate in the electives they have taken and/or in their work experience that they have the technical background for the project being offered by NOC.", + "corequisite": "" + }, + { + "moduleCode": "KE5204", + "title": "Genetic Algorithms", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5205", + "title": "Text Mining", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5206", + "title": "Computational Intelligence I", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5207", + "title": "Computational Intelligence II", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "KE5208", + "title": "Sense Making and Insight Discovery", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no hard prerequisites in terms of existing courses, but it would be desirable for students to have some interest in data mining.", + "corequisite": "" + }, + { + "moduleCode": "LA3201", + "title": "History and Theory of Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA4202", + "title": "Planting Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA4203", + "title": "History and Theory of Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "LA3201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA4212", + "title": "Topics in Tropical Forest Ecology", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA4301", + "title": "Material and Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA4701", + "title": "MLA Studio: Quarter", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Min C in AR3101a and AR3102a", + "corequisite": "" + }, + { + "moduleCode": "LA4702", + "title": "MLA Studio: City", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Min C in AR3101a and AR3102a", + "corequisite": "" + }, + { + "moduleCode": "LA5222", + "title": "Urban Ecology and Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA5302", + "title": "Detail Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA5303", + "title": "Urban Greening: Technologies and Techniques", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA5402", + "title": "Professional Practice", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA5702", + "title": "MLA Studio: Region", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LA5742", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAB1201", + "title": "Bahasa Indonesia 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "LAM1201 Malay 1", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAB2201", + "title": "Bahasa Indonesia 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAB1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAB3201", + "title": "Bahasa Indonesia 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAB2201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAB3202", + "title": "Bahasa Indonesia 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAB3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAB4201", + "title": "Bahasa Indonesia 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAB3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAB4202", + "title": "Bahasa Indonesia 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAB4201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC1201", + "title": "Chinese 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAC2201", + "title": "Chinese 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAC1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC2202", + "title": "Chinese Characters Writing & Composition", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Passed ‘O’ and/or ‘A’ Level Chinese as a second language", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students who have some proficiency in spoken and written Chinese, but are not able to speak and write in Chinese fluently and accurately. It will include those who have read mother-tongue Chinese language ‘B’ syllabus under the MOE system. A placement test and an oral interview are required for enrolment. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC3201", + "title": "Chinese 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAC2201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC3202", + "title": "Chinese 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAC3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC3203", + "title": "Chinese for Science and Technology", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed Chinese language at GCE 'O' Level or ‘A’ Level or equivalent. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC3204", + "title": "Chinese for Business & Social Sciences", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed Chinese language at GCE 'O' Level or ‘A’ Level or equivalent. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC4201", + "title": "Chinese 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAC3202 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAC4202", + "title": "Chinese 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAC4201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAD1001", + "title": "Design 1", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD1002", + "title": "Design 2", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAD1001 Design 1", + "corequisite": "" + }, + { + "moduleCode": "LAD1003", + "title": "Introduction to Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD1004", + "title": "History and Theory of Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "LA4203 History and Theory of Landscape Architecture", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAD1003 Introduction to Landscape Architecture", + "corequisite": "" + }, + { + "moduleCode": "LAD2001", + "title": "Design 3", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Min C grade for LAD1001 Design 1 and LAD1002 Design 2", + "corequisite": "" + }, + { + "moduleCode": "LAD2002", + "title": "Design 4", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Min C grade for LAD1001 Design 1 and LAD1002 Design 2\nLAD2001 as pre-requisite", + "corequisite": "" + }, + { + "moduleCode": "LAD2003", + "title": "Landscape Construction I", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD2004", + "title": "Planting Design and Horticulture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD2005", + "title": "Introductory GIS for Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD3001", + "title": "Design 5", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Min C grade for LAD2001 Design 3 and LAD2002 Design 4", + "corequisite": "" + }, + { + "moduleCode": "LAD3002", + "title": "Design 6", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Min C grade for LAD2001 Design 3 and LAD2002 Design 4\nLAD3001 as pre-requisite", + "corequisite": "" + }, + { + "moduleCode": "LAD3003", + "title": "Professional Practice", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD3004", + "title": "Landscape Representation Techniques", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAD3005", + "title": "Landscape Architecture Internship Programme", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have taken LAD3001 and LAD3002", + "corequisite": "" + }, + { + "moduleCode": "LAD4003", + "title": "Landscape Construction II", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAD2003 Landscape Construction I", + "corequisite": "" + }, + { + "moduleCode": "LAD4005", + "title": "Topics in Landscape Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAF1201", + "title": "French 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAF2201", + "title": "French 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF3201", + "title": "French 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF2201or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF3202", + "title": "French 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LAF3203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF3203", + "title": "French for Academic Purposes", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "LAF3202", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF4201", + "title": "French 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF3202 or LAF3203 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF4202", + "title": "French 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF4201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF4203", + "title": "French Studies 1", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF4202, or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAF4204", + "title": "French Studies 2", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAF4203 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG1201", + "title": "German 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAG2201", + "title": "German 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG3201", + "title": "German 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG2201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG3202", + "title": "German 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "LAG3203 German for Academic Purposes", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG3203", + "title": "German for Academic Purposes", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "LAG3202 German 4", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG4201", + "title": "German 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG3202, LAG3203 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG4202", + "title": "German 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG4201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG4203", + "title": "German Studies 1", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG4202 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAG4204", + "title": "German Studies 2", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAG4203 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAH1201", + "title": "Hindi 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Hindi 1 is intended for students who are complete beginners. It is not suitable for students who are:  \n- native speakers of Hindi or Urdu  \n- students who have studied Hindi, Urdu, Gujarati, Marathi or Punjabi at 'O' or 'A' levels (or equivalents) or have previously undertaken any formal study of Hindi, Urdu, Gujarati or Punjabi for any duration of time  \n- Students who are from India have to provide a complete transcript of subjects studied to prove that they have not taken Hindi at any level.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAH2201", + "title": "Hindi 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAH1201 Hindi 1, or its equivalence, or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAH3201", + "title": "Hindi 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAH2201 Hindi 2 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAH3202", + "title": "Hindi 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAH3201 Hindi 3, or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAH4201", + "title": "Hindi 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAH3202 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAH4202", + "title": "Hindi 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAH4201 or a placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAI1732", + "title": "Italian for Singers II", + "moduleCredit": 3, + "department": "Centre for Language Studies", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAI 1731", + "corequisite": "" + }, + { + "moduleCode": "LAJ1201", + "title": "Japanese 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAJ2201", + "title": "Japanese 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ2202", + "title": "Japanese 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ2201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ2203", + "title": "Japanese 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ2202 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ3201", + "title": "Japanese 5", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LAJ3203 Business Japanese 1", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ2203 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ3202", + "title": "Japanese 6", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ3201, LAJ3203, or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ3203", + "title": "Business Japanese 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "LAJ3201 (Japanese 5), LAJ3202 (Japanese 6) & JLPT Level 1", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ2203 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ3204", + "title": "Business Japanese 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ3203 (Business Japanese 1), LAJ3201 (Japanese 5) or placement test Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ3205", + "title": "Media Japanese", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAJ3201 Japanese 5, LAJ3203 Business Japanese 1 or placement test Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ4203", + "title": "Newspaper Reading", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ3202, LAJ3204, JLPT Level 2 or 1, GCE ‘AO' level Japanese or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAJ4205", + "title": "Expository Writing & Public Speaking", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAJ3202, LAJ3204, JLPT Level 2 or 1, GCE AO' level Japanese or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK1201", + "title": "Korean 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAK2201", + "title": "Korean 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students who passed LAK1201 (Korean 1) or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK3201", + "title": "Korean 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAK2201 Korea 2 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK3202", + "title": "Korean 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "LAK3203 Korean for Academic Purpose", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAK3201 Korean 3 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK3203", + "title": "Korean for Academic Purposes", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "LAK3202 Korean 4", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAK3201 Korea 3 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK4201", + "title": "Korean 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAK3202 Korean 4, LAK3203 Korean for Academic Purposes or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK4202", + "title": "Korean 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAK4201 Korean 5 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK4203", + "title": "Korean 7", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAK4202 (Korea 6) or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAK4204", + "title": "Korean 8", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAK4203 Korean 7 or by placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAL1201", + "title": "Tamil 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAL2201", + "title": "Tamil 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAL1201 or placement test", + "corequisite": "" + }, + { + "moduleCode": "LAM1201", + "title": "Malay 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LAB1201 Bahasa Indonesia 1", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAM2201", + "title": "Malay 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAM1201 Malay 1 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAM2731", + "title": "Department exchange module", + "moduleCredit": 3, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAM3201", + "title": "Malay 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAM2201 Malay 2 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAM3202", + "title": "Malay 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAM3201 Malay 3 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAM4201", + "title": "Malay 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed LAM3202 Malay 4 or passed the placement test Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAM4202", + "title": "Malay 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed LAM4201 Malay 5 or passed the placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAR1201", + "title": "Arabic 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAR2201", + "title": "Arabic 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAR1201 Arabic 1, or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAR3201", + "title": "Arabic 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Successful completion of LAR2201 or exemption from it based on placement test results. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAR3202", + "title": "Arabic 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Successful completion of LAR3201 or exemption from it based on placement test results. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAR4201", + "title": "Arabic 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Successful completion of LAR3202 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAR4202", + "title": "Arabic 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Successful completion of LAR4201 or by placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS1201", + "title": "Spanish 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "YLS1201 Introductory Spanish I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAS2201", + "title": "Spanish 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "YLS1202 Introductory Spanish", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAS1201 Spanish 1 or YLS1201 Introductory Spanish I, or placement test Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS3201", + "title": "Spanish 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "YLS2201 Intermediate Spanish I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAS2201 Spanish 2 or YLS1202 Introductory Spanish II, or placement test Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS3202", + "title": "Spanish 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "YS2202 Intermediate Spanish II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAS3201 Spanish 3 or YLS2201 Intermediate Spanish I, or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS3732", + "title": "Department exchange module", + "moduleCredit": 3, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LAS4201", + "title": "Spanish 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "YLS3201 Advanced Spanish I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAS3202 Spanish 4 or YLS2202 Intermediate Spanish II, or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS4202", + "title": "Spanish 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "YLS3202 Advanced Spanish II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAS4201 Spanish 5 or YLS3201 Advanced Spanish I, or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS4203", + "title": "Spanish 7", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level B2.1 according to the CEFR (students will have to take a placement test) or LAS4202 Spanish 6. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAS4204", + "title": "Spanish 8", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level B2.2 according to the CEFR (students will have to take a placement test) or LAS4203 Spanish 7. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAT1201", + "title": "Thai 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAT2201", + "title": "Thai 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAT1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAT3201", + "title": "Thai 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAT2201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAT3202", + "title": "Thai 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAT3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAT4201", + "title": "Thai 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAT3202 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAT4202", + "title": "Thai 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAT4201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAV1201", + "title": "Vietnamese 1", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students with no prior knowledge of the target language. Students with prior knowledge (including spoken proficiency) must contact CLS to take a placement test.", + "corequisite": "" + }, + { + "moduleCode": "LAV2201", + "title": "Vietnamese 2", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAV1201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAV3201", + "title": "Vietnamese 3", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAV2201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAV3202", + "title": "Vietnamese 4", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAV3201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAV4201", + "title": "Vietnamese 5", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed LAV3202 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAV4202", + "title": "Vietnamese 6", + "moduleCredit": 5, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAV4201 or placement test. Student must not have read a higher level module than this module.", + "corequisite": "" + }, + { + "moduleCode": "LAX2743", + "title": "Department exchange module", + "moduleCredit": 4, + "department": "Centre for Language Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001A", + "title": "Criminal Law (A)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001B", + "title": "Criminal Law (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001C", + "title": "Criminal Law (C)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001D", + "title": "Criminal Law (D)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001E", + "title": "Criminal Law (E)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001F", + "title": "Criminal Law (F)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001G", + "title": "Criminal Law (G)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001H", + "title": "Criminal Law (H)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1001I", + "title": "Criminal Law (I)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002A", + "title": "Introduction To Legal Theory (A)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002B", + "title": "Introduction To Legal Theory (B)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002C", + "title": "Introduction to Legal Theory (C)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002D", + "title": "Introduction to Legal Theory (D)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002E", + "title": "Introduction to Legal Theory (E)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002F", + "title": "Introduction to Legal Theory (F)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002G", + "title": "Introduction to Legal Theory (G)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002H", + "title": "Introduction to Legal Theory (H)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1002I", + "title": "Introduction to Legal Theory (I)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1003", + "title": "Law Of Contract", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1004", + "title": "Law Of Torts", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1005", + "title": "Singapore Legal System", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1006", + "title": "Legal Analysis, Writing And Research I", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1007", + "title": "Legal Analysis, Writing And Research II", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1015", + "title": "Singapore Law in Context", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1016", + "title": "Legal Analysis, Research & Communication", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC1025", + "title": "Singapore Law in Context", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2001A", + "title": "Comparative Legal Traditions (A)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2001B", + "title": "Comparative Legal Traditions (B)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2001C", + "title": "Comparative Legal Traditions (C)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2001D", + "title": "Comparative Legal Traditions (D)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2002", + "title": "Introduction To Trial Advocacy", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2003", + "title": "Legal Case Studies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2004", + "title": "Principles Of Property Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006A", + "title": "Equity & Trusts (A)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006B", + "title": "Equity & Trusts (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006C", + "title": "Equity & Trusts (C)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006D", + "title": "Equity & Trusts (D)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006E", + "title": "Equity & Trusts (E)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006F", + "title": "Equity & Trusts (F)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2006G", + "title": "Equity & Trusts (G)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2007", + "title": "Constitutional & Administrative Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008A", + "title": "Company Law (A)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008B", + "title": "Company Law (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008C", + "title": "Company Law (C)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008D", + "title": "Company Law (D)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008E", + "title": "Company Law (E)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008F", + "title": "Company Law (F)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2008G", + "title": "Company Law (G)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2009", + "title": "Pro Bono Service", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010A", + "title": "Legal Systems of Asia (A)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010B", + "title": "Legal Systems of Asia (B)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010C", + "title": "Legal Systems of Asia (C)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010D", + "title": "Legal Systems of Asia (D)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010E", + "title": "Legal Systems of Asia (E)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010F", + "title": "Legal Systems of Asia (F)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010G", + "title": "Legal Systems of Asia (G)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2010H", + "title": "Legal Systems of Asia (H)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2012", + "title": "Trial Advocacy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LC2002 Introduction to Trial Advocacy\nLC2013 Corporate Deals\nLC2003 Legal Case Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC2013", + "title": "Corporate Deals", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LC2002 Introduction to Trial Advocacy\nLC2012 Trial Advocacy \nLC2003 Legal Case Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC3001A", + "title": "Evidence (A)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC3001B", + "title": "Evidence (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5001", + "title": "Comparative Legal Traditions in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5002", + "title": "Common Law Reasoning & Writing", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5003", + "title": "Common Law Legal System of Singapore", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5008A", + "title": "Company Law (a)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5010A", + "title": "Legal Systems of Asia (A)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5029", + "title": "International Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5035", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "(1) LL4035/LL5035/LL6035; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5035A", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4035/LL5035/LL6035; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5035B", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4035/LL5035/LL6035; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5035V", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4035/LL5035/LL6035; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5050", + "title": "Public International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5050V", + "title": "Public International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LC5050.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5070", + "title": "Foundations of IP Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5070V", + "title": "Foundations Of Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "The Law of Intellectual Property. Students who are taking or have taken LC5070.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5074", + "title": "Mergers & Acquisitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS compulsory core curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5089", + "title": "Chinese Corporate & Securities Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5093", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5112", + "title": "Common Law of Obligations", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5114", + "title": "Cross-Border Transactions & Transnational Commercial Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5115", + "title": "International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5118", + "title": "Foreign Direct Investment Law in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5126", + "title": "International Corporate Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5127", + "title": "Common Law Reasoning & Writing", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5168", + "title": "Banking and International Payments", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5186", + "title": "International & Commercial Trusts Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5204A", + "title": "Carriage of Goods By Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5204AV", + "title": "Carriage of Goods By Sea", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken Carriage of Goods by Sea.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5204B", + "title": "Charterparties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5204BV", + "title": "Charterparties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LC5204B.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5225", + "title": "Carriage of Goods by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5230", + "title": "Elements of Company Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who have studied company law or a similar subject in a commonwealth jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5232", + "title": "Principles of Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students should not have read any competition law or antitrust law module as part of their undergraduate degree programme.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5262AV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5262BV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5262V", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4029", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5264", + "title": "WTO and Regional Integration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4060B/LL5060B/LL6060B World Trade Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5265", + "title": "Chinese Business Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4089/LL5089/LL6089 Chinese Corporate & Securities Law\nLL4089V/LL5089V/LL6089V Chinese Corporate & Securities Law\nLC5089 Chinese Corporate & Securities Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Civil law, Contract Law", + "corequisite": "" + }, + { + "moduleCode": "LC5266", + "title": "Trusts, Agency and Partnership Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC5285V", + "title": "International Dispute Settlement", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4285/LL5285/LL6285/LC5285 International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LC5336", + "title": "Topics in Int'l Arbitration & Dispute Resolution", + "moduleCredit": 1, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5337", + "title": "Singapore Common Law of Contract", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Sufficient coursework and/or work experience in the common law to be determined by Convenor and Vice Dean (Academic Affairs). Students who have read LC5337S Singapore Common Law of Contract are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5337S", + "title": "Singapore Common Law of Contract", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Sufficient coursework and/or work experience in the common law to be determined by Convenor and Vice Dean (Academic Affairs). Students who have read LC5337 Singapore Common Law of Contract are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LC5337", + "corequisite": "" + }, + { + "moduleCode": "LC5405A", + "title": "Law of Intellectual Property (a)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4405B/LL5405B/LL6405B Law of IP & LL4070/LL5070/LC5070/LL6070 Foundations of IP Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC5405B", + "title": "Law of Intellectual Property (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4405A/LL5405A/LL6405A Law of IP & LL4070/LL5070/LC5070/LL6070 Foundations of IP Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LC6001", + "title": "Comparative Legal Traditions in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC6002", + "title": "Common Law Reasoning & Writing", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC6003", + "title": "Common Law Legal System of Singapore", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC6008A", + "title": "Company Law (A)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LC6009GRSII", + "title": "Graduate Research Seminar II (Research Methods)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LC5009 / LC6009 Graduate Research Seminar", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LL5009GRSI / LL6009GRSI Graduate Research Seminar I (Legal Scholarship)", + "corequisite": "" + }, + { + "moduleCode": "LC6378", + "title": "Doctoral Workshop", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LCC5365", + "title": "Foundations of Common Law and Criminal Law & Procedure", + "moduleCredit": 6, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LCC5366", + "title": "Law of Evidence & Sentencing Law", + "moduleCredit": 3, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LCD5008A", + "title": "Company Law (a)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LCD5204A", + "title": "Carriage of Goods By Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LCD5204AV", + "title": "Carriage of Goods By Sea", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken Carriage of Goods by Sea.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LCD5204B", + "title": "Charterparties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LCD5204BV", + "title": "Charterparties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LCD5204B.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LE1001", + "title": "Law Elective - Exchange", + "moduleCredit": 1, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE1002", + "title": "Law Elective - Exchange", + "moduleCredit": 1, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE2001", + "title": "Law Elective - Exchange", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE3001", + "title": "Law Elective - Exchange", + "moduleCredit": 3, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE4000", + "title": "Law Elective - Exchange", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE4000A", + "title": "Law Elective - Exchange", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE4000B", + "title": "Law Elective - Exchange", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE4000C", + "title": "Law Elective - Exchange", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LE4000D", + "title": "Law Elective - Exchange", + "moduleCredit": 0, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5000", + "title": "Logistics Research Project", + "moduleCredit": 8, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5001", + "title": "Research Project", + "moduleCredit": 8, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5002", + "title": "Internship Project", + "moduleCredit": 8, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5101", + "title": "Supply Chain Mgt Thinking & Practice", + "moduleCredit": 4, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5101A", + "title": "Transformational Strategies for Supply Chains", + "moduleCredit": 2, + "department": "Logistics Inst - Asia Pac", + "faculty": "Engineering", + "semester": [], + "preclusion": "LI5101 Supply Chain Management Thinking and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5101B", + "title": "Supply Chain Management Practice", + "moduleCredit": 2, + "department": "Logistics Inst - Asia Pac", + "faculty": "Engineering", + "semester": [], + "preclusion": "LI5101 Supply Chain Management Thinking and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5201", + "title": "Special Topics in Logistics", + "moduleCredit": 4, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5202", + "title": "Supply Chain Management Strategies and Case Studies", + "moduleCredit": 4, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5203", + "title": "Global Logistics and Supply Chain Management", + "moduleCredit": 4, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LI5101 Supply Chain Management Thinking and Practice, or approval of Director (Degree Education), TLI-AP", + "corequisite": "" + }, + { + "moduleCode": "LI5204", + "title": "Supply Chain Simulation and Optimization", + "moduleCredit": 4, + "department": "Logistics Inst - Asia Pac", + "faculty": "Logistics Inst-Asia Pac", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LI5101 Supply Chain Management Thinking and\nPractice, or approval of course instructor.", + "corequisite": "" + }, + { + "moduleCode": "LI5204A", + "title": "Decision Support for Supply Chain", + "moduleCredit": 2, + "department": "Logistics Inst - Asia Pac", + "faculty": "Engineering", + "semester": [], + "preclusion": "LI5204 Supply Chain Simulation and Optimization", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LI5204B", + "title": "Modelling for Supply Chain Optimization", + "moduleCredit": 2, + "department": "Logistics Inst - Asia Pac", + "faculty": "Engineering", + "semester": [], + "preclusion": "LI5204 Supply Chain Simulation and Optimization", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LI5204A Decision Support for Supply Chain, or approval of course instructor.", + "corequisite": "" + }, + { + "moduleCode": "LL4001", + "title": "Administration Of Criminal Justice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4002", + "title": "Admiralty Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4002V", + "title": "Admiralty Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4002.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4003V", + "title": "China, India and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4003.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4004", + "title": "Aviation Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4004V", + "title": "Aviation Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4005V", + "title": "Bank Documentation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken Bank Documentation.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Note to students from civil law jurisdiction: this module adopts a common law approach.", + "corequisite": "" + }, + { + "moduleCode": "LL4006", + "title": "Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Banking & Negotiable Instruments (LL4610C / LS5607).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4006V", + "title": "Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4006.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4007", + "title": "Biotechnology Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Not open to students who have successfully completed Biotechnology Law (LL4309C/LS5382) (LLA4028/LSA4028/LMA4028)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4007V", + "title": "Biotechnology Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4007.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4008A", + "title": "Carriage of Goods By Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4008/LL5008/LL6008 Carriage of Goods By Sea", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4008AV", + "title": "Carriage of Goods By Sea", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken Carriage of Goods by Sea.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4008B", + "title": "Charterparties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4008/LL5008/LL6008 Carriage of Goods By Sea", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent AND L4008A/LL5008A/LL6008A Carriage of Goods By Sea", + "corequisite": "" + }, + { + "moduleCode": "LL4008BV", + "title": "Charterparties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4008B.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4009", + "title": "Chinese Legal Tradition And Legal Chinese", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Not open to students from People's Republic of China. ♣ Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Students must have obtained a B4 and above in CL or CL2 (AO Level) or B4 and above in Higher Chinese (HCL or CL1)", + "corequisite": "" + }, + { + "moduleCode": "LL4009V", + "title": "Chinese Legal Tradition And Legal Chinese", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Exchange students from law schools in China and post-graduate students who are graduates of law schools in China are precluded from taking this course for credit.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Students must have obtained a B4 and above in CL or CL2 (AO Level) or B4 and above in Higher Chinese (HCL or CL1)", + "corequisite": "" + }, + { + "moduleCode": "LL4010", + "title": "Civil Law Tradition", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4010A", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4010AV", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4010", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4011", + "title": "Civil Justice & Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4011V/LL5011V/LL6011V Civil Justice & Process;\nLL4413/LL5413/LL6413 Civil Justice and Procedure.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "corequisite": "" + }, + { + "moduleCode": "LL4011V", + "title": "Civil Justice & Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4011/LL5011/LL6011 Civil Justice & Process;\nLL4413/LL5413/LL6413 Civil Justice and Procedure.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "corequisite": "" + }, + { + "moduleCode": "LL4012V", + "title": "Comparative Constitutional Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4012", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4013V", + "title": "Comparative Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4013", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4014", + "title": "Construction Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Construction Law (LL4357C / LS5370) or (LLA4036/LMA4036/LDA4036/LSA4036)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4014V", + "title": "Construction Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4014", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4016A", + "title": "Topics in Int’l Criminal Law (A): Aggression", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4017", + "title": "Contract and Commercial Law in Civil-Law Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Any student pursuing or having obtained a basic law degree in a civil law jurisdiction is precluded from taking this course. This course is for common law students who\nhave not studied the civil law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. \n\nContract Law (or the equivalent common law contract course for exchange and graduate students)", + "corequisite": "" + }, + { + "moduleCode": "LL4018", + "title": "Corporate Tax: Profits & Distributions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4018V", + "title": "Corporate Tax: Profits & Distributions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4018", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4019", + "title": "Credit & Security", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LLB2008) or its equivalent in a common law jurisdiction (may be taken concurrently). (c) Personal Property Law (LLA4074/LMA4074", + "corequisite": "" + }, + { + "moduleCode": "LL4019V", + "title": "Credit & Security", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4021V", + "title": "Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4022V", + "title": "Globalization And International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4022", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4024", + "title": "Indonesian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4024V", + "title": "Indonesian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4024", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4025", + "title": "Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL4025V", + "title": "Rights", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4025", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4026V", + "title": "Infocoms Law: Competition & Convergence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4026", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4027", + "title": "International & Comparative Law Of Sale", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4029", + "title": "International Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4029AV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4029BV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4029V", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4029", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4030", + "title": "International Commercial Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4030V", + "title": "International Commercial Litigation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4030", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4031", + "title": "International Environmental Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4031V", + "title": "International Environmental Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4031", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4032", + "title": "International Investment Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4032V", + "title": "International Investment Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4032", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4033", + "title": "International Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(a) Open only to students who haveobtained prior approval of the convenor. (b) Not open to exchange students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4033V", + "title": "International Legal Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4033", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4034", + "title": "International Regulation of Shipping", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4034V", + "title": "International Regulation of Shipping", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4034.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent. Students who have completed a course in Law of the Sea or Ocean Law & Policy may have a slight advantage.", + "corequisite": "" + }, + { + "moduleCode": "LL4035", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4035V/LL5035V/LL6035V / LC5035 / LC5035V / LC5035A / LC5035B Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4035V", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "(1) LL4035/LL5035/LL6035/LC5035/LC5035V/LC5035A/ LC5035B Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4037", + "title": "Sociology of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law Students: NUS Compulsory Core Law Curriculum or its equivalent; For Non-Law Students: Open to students from Arts and Social Sciences with at least 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL4037V", + "title": "Sociology of Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4037", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law Students: NUS Compulsory Core Law Curriculum or its equivalent; For Non-Law Students: Open to students from Arts and Social Sciences with at least 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL4042V", + "title": "Law and Religion", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4042.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law - NUS Compulsory Core Curriculum or its equivalent.\nFor Non-Law – At least 3rd year students from Arts and Social Sciences.", + "corequisite": "" + }, + { + "moduleCode": "LL4043", + "title": "Law Of Marine Insurance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4043V", + "title": "Law Of Marine Insurance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4043.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4044", + "title": "Mediation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Not open to students who have successfully completed the Mediation Workshop (LN4301) or its equivalent elsewhere. ♣ Module not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4044V", + "title": "Mediation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Not open to students who have successfully completed Mediation.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4045", + "title": "Negotiation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Not open to students who have successfully completed Negotiation Workshop (LN4302) or its equivalent elsewhere.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4045V", + "title": "Negotiation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Note: Not open to students who have successfully completed Negotiation Workshop or its equivalent elsewhere. Not open to incoming exchange students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4049", + "title": "Principles Of Conflict Of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Commercial Law in Cross-Border Applications (LL4356C / LS5369) and Introduction to Private International Law (LM5308 /LC5308 / LD5308).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4049V", + "title": "Principles Of Conflict Of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4049.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4050", + "title": "Public International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4050V", + "title": "Public International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4050.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4051", + "title": "Principles Of Restitution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Remedies in Contract, Tort & Restitution (LL4651D), (LLB4078/LMB4078/LDB4078/LSB4078). ♣ Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Property II (LL3601A) or an equivalent course on Equity & Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LL4054", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4054V", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4055", + "title": "Securities Regulation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4055V/LL5055V/LL6055V Securities Regulation;\nStudents doing or have done any of the following module(s) are precluded: (1) International Corporate Finance [8MC -LL4409/LL5409/LLD5409/LL6409; 4MC - LL4238/LL5238/LL6238; 5MC - LL4238V/LL5238V/LL6238V]; (2) Corporate Finance Law & Practice in Singapore - 4MC - LL4182/LL5182/LL6182; 5MC - LL4182V/LL5182V/LL6182V; (3) 8MC - Securities and Capital Markets Regulation - LL4412/LL5412/LL6412.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL4056A", + "title": "Tax Planning And Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4056.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL4056AV", + "title": "Tax Planning And Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4056A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL4056B", + "title": "Tax Planning And Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Not open to student who have successfully completed Revenue Law (LL4652C / LS5617). ♣ Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL4056BV", + "title": "Tax Planning And Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4056B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL4057V", + "title": "Theoretical Foundations Of Criminal Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4057.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: NUS Compulsory Core Law Curriculum or equivalent.\n\nFor Non-Law students: Open to students from FASS (Philosophy, Political Science) who have completed 120 MCs. \n\nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: NUS Compulsory Core Law Curriculum or equivalent. For Non-Law students: Open to students from FASS (Philosophy, Political Science) who have completed 120 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL4059V", + "title": "United Nations Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4059.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4060", + "title": "World Trade Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4060B", + "title": "World Trade Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4199A/LL4199B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4061", + "title": "Inquiry", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "For Non-Law Students: Open to students from University Scholars Programme who have read 80MCs or more." + }, + { + "moduleCode": "LL4061V", + "title": "Inquiry", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4061.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "For Non-Law Students: Open to students from University Scholars Programme who have read 80MCs or more." + }, + { + "moduleCode": "LL4062", + "title": "Legal Reasoning & Legal Theory", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\n\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL4062V", + "title": "Legal Reasoning & Legal Theory", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4062.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\n\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL4063", + "title": "Business & Finance For Lawyers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LLB2008) or its equivalent in a common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL4063V", + "title": "Business & Finance For Lawyers", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who are taking or have taken LL4063.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) Company Law or its equivalent in a common law jurisdiction (may be taken concurrently)", + "corequisite": "" + }, + { + "moduleCode": "LL4064", + "title": "Competition Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Competition Law courses taught in European, American and Singapore law schools.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4064V", + "title": "Competition Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Competition Law courses taught in European, American and Singapore law schools.\nStudents who are taking or have taken LL4064.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4065", + "title": "Comparative Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LLB2008) or its equivalent in a common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL4067", + "title": "Comparative Criminal Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4069", + "title": "European Union Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4069V", + "title": "European Union Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4070", + "title": "Foundations Of Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "The Law of Intellectual Property (LLB4067A, LLB4067B). ♣ Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4070V", + "title": "Foundations Of Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "The Law of Intellectual Property. Students who are taking or have taken LL4070.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4071", + "title": "International Patent Law, Policy and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "May vary from year to year depending on the modules offered by visitors to NUS Law in any given year.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) A foundation or basic knowledge in IP law would be useful.", + "corequisite": "" + }, + { + "moduleCode": "LL4071V", + "title": "International Patent Law, Policy and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "May vary from year to year depending on the modules offered by visitors to NUS Law in any given year.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) A foundation or basic knowledge in IP law would be useful", + "corequisite": "" + }, + { + "moduleCode": "LL4072B", + "title": "Topics in IP Law B: IP Valuation:Law & Prc", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4073", + "title": "International Criminal Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4073V", + "title": "International Criminal Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4073.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4074", + "title": "Mergers & Acquisitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Company Law (LC2008) or its equivalent in a common law jurisdiction.", + "corequisite": "" + }, + { + "moduleCode": "LL4074V", + "title": "Mergers & Acquisitions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Must not have taken a substantially similar course. Not open to students who have taken/taking LL4223/LL5223/LL6223 Cross Border Mergers. Not open to students who have taken Mergers and Acquisition (M&A).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4075", + "title": "IP and Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4075V", + "title": "IP and Competition Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4075.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4076", + "title": "IT Law I", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Legal Issues in Electronic Commerce (LLA4022) and Internet Law & Policy (LLA4056).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4076V", + "title": "IT Law I", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4076.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4077V", + "title": "IT Law II", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4077.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4078", + "title": "Law & Practice of Investment Treaty Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4079", + "title": "State and Company in Legal-Historical Perspective", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4081", + "title": "Comparative Advocacy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4082", + "title": "Law & Social Movements", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4085", + "title": "International Trusts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4088", + "title": "Chinese Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4088V", + "title": "Chinese Contract Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Exchange students from law schools in China and postgraduate students who are graduates of law schools in China are precluded from taking this course for credit.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Note: This course is delivered bi-lingually, yet predominantly in English. It is a plus but not a must that students have learned Chinese Legal Tradition and Legal Chinese (LL4009), or have\nobtained a B4 and above in CL or CL2 ('AO' Level) or B4 and above in Higher Chinese (HCL or CL1).", + "corequisite": "" + }, + { + "moduleCode": "LL4089", + "title": "Chinese Corporate & Securities Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4089V", + "title": "Chinese Corporate & Securities Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4089.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4093", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4093V", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4094", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4094AV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4094BV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4094CV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4094V", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4096", + "title": "International Trademark Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "a) NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4096V", + "title": "International Trademark Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4096.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4097", + "title": "Islamic Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Year 1 & 2 Compulsory Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4097V", + "title": "Islamic Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4097.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4099", + "title": "Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4099V", + "title": "Maritime Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4099.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4100", + "title": "Arbitration and Dispute Resolution in China", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4100V/LL5100V/LL6100V Arbitration and Dispute Resolution in China", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4100V", + "title": "Arbitration and Dispute Resolution in China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4100/LL5100/LL6100 Arbitration and Dispute Resolution in China", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4102", + "title": "Advanced Torts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Law of Torts", + "corequisite": "" + }, + { + "moduleCode": "LL4102V", + "title": "Advanced Torts", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4104", + "title": "Jurisprudence", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\n\nFor non-law students: 3rd & 4th Year students from Arts & Social Sciences Faculty", + "corequisite": "" + }, + { + "moduleCode": "LL4104V", + "title": "Jurisprudence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4104.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4107V", + "title": "Partnership and Alternative Business Vehicles", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4109", + "title": "International Law & Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4109V", + "title": "International Law & Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4109.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4111V", + "title": "International Copyright Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4111.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4122", + "title": "The Contemporary Indian Legal System", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4122V", + "title": "The Contemporary Indian Legal System", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4122", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4123", + "title": "International Insolvency Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4125", + "title": "Law And Development In China", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4125V", + "title": "Law And Development In China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4125", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4128", + "title": "Chinese Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4129", + "title": "Indian Business Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law Students: NUS Compulsory Core Law Curriculum or its equivalent; For Non-Law Students: Open to 3rd & 4th year students from Business School who have read 80MCs or more.", + "corequisite": "" + }, + { + "moduleCode": "LL4129V", + "title": "Indian Business Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4129", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: NUS Compulsory Core Curriculum or its equivalent.\n\nA foundational course on constitutional and administrative law (from either a common law or some other jurisdiction). \n\nFor Non-Law students: Open to students from Business School who have completed 80MCs. \n\nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: NUS Compulsory Core Curriculum or its equivalent. \n\nA foundational course on constitutional and administrative law (from either a common law or some other jurisdiction).\n\nFor Non-Law students: Open to students from Business School who have completed 80MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL4131", + "title": "Law, Governance & Development in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4131V", + "title": "Law, Governance & Development in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4131.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4133", + "title": "Human Rights in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4133V", + "title": "Human Rights in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4133.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4134", + "title": "Crossing Borders: Law, Migration & Citizenship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\nFor non‐law students: 3rd & 4th Year students from Arts & Social Sciences Faculty", + "corequisite": "" + }, + { + "moduleCode": "LL4134V", + "title": "Crossing Borders: Law, Migration & Citizenship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4134.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4135", + "title": "Patent Law & Practice: Perspectives from the U.S", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4071/LL5071/LL6071; LL4071V/LL5071V/LL6017V International Patent Law, Policy and Practice; \n(2) LL4405B/LL5405B/LL6405B/LC5405B Law of Intellectual Property (B); \n(3) LL4007/LL5007/LL6007; LL4007V/LL5007V/LL6007V Biotechnology Law;\n(4) LL4076/LL5076/LL6076; LL4076V/LL5076V/LL6076V IT Law I\n(5) LL4135V/LL5135V/LL6135V Patent Law and Practice: Perspectives from the U.S.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4138", + "title": "Int'l & Comp Law of Sale in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4138V", + "title": "Int'l & Comp Law of Sale in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4138", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4140", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4140V/LL5140V/LL6140V/LLD5140V Law of the Sea: Theory and Practice;\nLL4140V/LL5140V/LL6140V/LLD5140V Ocean Law & Policy in Asia; LL4046V/LL5046V/LL6046V Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4140V", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4140/LL5140/LL6140/LLD5140 Law of the Sea: Theory and Practice;\nLL4140/LL5140/LL6140/LLD5140 Ocean Law & Policy in Asia; LL4046/LL5046/LL6046 Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4146", + "title": "Law & Society", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4146V", + "title": "Law & Society", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4146", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4148", + "title": "Secured Transactions Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Credit & Security (LL4019/LL5019/LL6019; LL4019V/LL5019V/LL6019V)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4150", + "title": "International Investment Law and Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4150V/LL5150V/LL6150V International Investment Law and Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4150V", + "title": "International Investment Law and Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4150/LL5150/LL6150 International Investment Law and Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4153", + "title": "Int'l Police Enforcement Cooperation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4155", + "title": "Topics in Law and Economics", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4158", + "title": "Climate Change Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4158V/LL5158V/LL6158V Climate Change Law;\nLL4221/LL5221/LL6221; LL4221V/LL5221V/LL6221V Climate Change Law & Policy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4158V", + "title": "Climate Change Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4158/LL5158/LL6158 Climate Change Law;\nLL4221/LL5221/LL6221; LL4221V/LL5221V/LL6221V Climate Change Law & Policy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4159", + "title": "The Economic Analysis of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have done Economic Analysis of Law [Module code: L56.3020] under the NYU@NUS Summer Session are precluded. LL4159V/LL5159V/LL6159V The Economic Analysis of Law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4159V", + "title": "The Economic Analysis of Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have done Economic Analysis of Law [Module code: L56.3020] under the NYU@NUS Summer Session are precluded. LL4159/LL5159/LL6159 The Economic Analysis of Law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4161", + "title": "Intelligence Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4161V", + "title": "Intelligence Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4161", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4162", + "title": "Singapore Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Previously completed a course in Company Law.", + "corequisite": "" + }, + { + "moduleCode": "LL4162V", + "title": "Singapore Corporate Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Previously completed a course in Company Law.", + "corequisite": "" + }, + { + "moduleCode": "LL4164", + "title": "International Projects Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4164V", + "title": "International Projects Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4164.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4170", + "title": "Comparative Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4171", + "title": "ASEAN Environmental Law, Policy & Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4171V", + "title": "ASEAN Environmental Law, Policy & Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken 4171.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4172", + "title": "Japanese Corporate Law & Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4173", + "title": "Comparative Corporate Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4173V", + "title": "Comparative Corporate Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4173.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4175", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4175V", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4175.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4177", + "title": "Entertainment Law: Pop Iconography & Celebrity", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4177V", + "title": "Entertainment Law: Pop Iconography & Celebrity", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL4177.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4178", + "title": "Law and Practice of Investment Treaties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Must not have taken a substantially similar course. \nNot open to students who have taken/taking (1) LL4032/LL5032/LL6032; LL4032V/LL5032V/LL6032V International Investment Law; (2) LL4078/LL5078/LL6078; LL4078V/LL5078V/LL6078V Law & Practice of Investment Treaty Arbitration.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4178V", + "title": "Law and Practice of Investment Treaties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Must not have taken a substantially similar course. \nNot open to students who have taken/taking (1) LL4032/LL5032/LL6032; LL4032V/LL5032V/LL6032V International Investment Law; (2) LL4078/LL5078/LL6078; LL4078V/LL5078V/LL6078V Law & Practice of Investment Treaty Arbitration.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4179", + "title": "International Alternative Dispute Resolution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4180", + "title": "Choice of Law & Jurisdiction in Int’l Commercial Contracts in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4185", + "title": "Government Regulations: Law, Policy & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4185V", + "title": "Government Regulations: Law, Policy & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4187", + "title": "Philosophical Foundations of Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4188", + "title": "Corporate Law and Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4409/LLD5409/LL6409 International\nCorporate Finance\n• LL4182/LLD5182/LL6182 Corporate Finance\nLaw and Practice in Singapore\nLL4055/LL5055/LL6055 Securities Regulation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law students,\n• LC2008 Company Law\nFor Business students,\n• BSP1004 Legal Environment Of Business\n• FNA2004 Finance", + "corequisite": "" + }, + { + "moduleCode": "LL4189", + "title": "Corporate Social Responsibility", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4189V/LL5189V/LL6189V Corporate Social Responsibility", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4189V", + "title": "Corporate Social Responsibility", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4189/LL5189/LL6189 Corporate Social Responsibility", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4190", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4190V", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4190.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4191", + "title": "Wealth Management Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent (b) Principles of Conflict of Laws [LL4049] is recommended.", + "corequisite": "" + }, + { + "moduleCode": "LL4192", + "title": "Private International Law of IP", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4193", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4193V", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4193.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4194", + "title": "Partnership and LLP Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4195V", + "title": "International Economic Law & Relations", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4195.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4197", + "title": "Comparative State and Religion in Southeast Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\n\nFor non‐law students: 3rd & 4th Year students from Arts & Social Sciences Faculty who has completed PS1101E Introduction to Politics", + "corequisite": "" + }, + { + "moduleCode": "LL4197V", + "title": "Comparative State and Religion in Southeast Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4197.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent..\n\nFor non‐law students: 3rd & 4th Year students from Faculty of Arts & Social Sciences who have completed PS1101E Introduction to Politics.", + "corequisite": "" + }, + { + "moduleCode": "LL4202", + "title": "ASEAN Economic Community Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4202V", + "title": "ASEAN Economic Community Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4202.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4203", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4203A", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4203B", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4203C", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4204", + "title": "Islamic Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4205", + "title": "Maritime Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "LL4002 Admiralty Law and Practice (Co-requisite)" + }, + { + "moduleCode": "LL4205V", + "title": "Maritime Conflict of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4205.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4208", + "title": "Advanced Criminal Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4208V", + "title": "Advanced Criminal Legal Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4208.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4209", + "title": "Legal Argument & Narrative", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4209V", + "title": "Legal Argument & Narrative", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4209.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4210", + "title": "Intellectual Property And International Trade", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4210V", + "title": "Intellectual Property And International Trade", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4210.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4211", + "title": "International Public Monetary and Payment Systems Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4213", + "title": "Transnational Law in Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS compulsory core curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4214", + "title": "International and Comparative Oil and Gas Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4216", + "title": "Cyber Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4217", + "title": "Comparative & International Anti-Corruption Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4218V", + "title": "Asian Legal Studies Colloquium", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4218.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4219", + "title": "The Trial of Jesus in Western Legal Thought", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4220", + "title": "International Business Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4221", + "title": "Climate Change Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4222", + "title": "The Law & Politics of International Courts & Tribunals", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4223", + "title": "Cross Border Mergers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. Must have read Tax Module or Securities Regulation", + "corequisite": "" + }, + { + "moduleCode": "LL4224", + "title": "Cybercrime & Information Security Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4225", + "title": "Topics in the Law and Economics of Competition Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4226", + "title": "Multimodal Transport Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4226V", + "title": "Multimodal Transport Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4226.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4227", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4228", + "title": "The Use of Force in International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4228V", + "title": "The Use of Force in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4228.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4229", + "title": "Corporate Governance in the US and UK", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4065/LL5065/LL6065 Comparative Corporate \nGovernance & LL4162/LL5162/LL6162 Corporate \nGovernance in Singapore", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4231", + "title": "Transition and the Rule of Law in Myanmar", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4233", + "title": "European Company Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4233V", + "title": "European Company Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4233.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4234", + "title": "Property Theory", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum For non-law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL4234V", + "title": "Property Theory", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4234.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4235", + "title": "International Contract Law: Principles and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4235V/LL5235V/LL6235V International Contract Law: Principles and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4235V", + "title": "International Contract Law: Principles and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4235/LL5235/LL6235 International Contract Law: Principles and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4237V", + "title": "Law, Institutions, and Business in Greater China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4238", + "title": "International Corporate Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students should not have done a substantially similar subject. Students doing or have done any of the following module(s) are precluded: \n1) Securities Regulation [LL4055/LL5055/LL6055]; \n(2) Corporate Law & Finance [LL4188/LL5188/LLD5188/LL6188]; \n(3) Corporate Finance Law & Practice in Singapore [LL4182/LL5182/LLD5182/LL6182]; \n(4) International Corporate Finance [LL4409/LL5409/LL6409]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent; Law of Contract [LC1003 or equivalent]; \nCompany Law [LC2008/LC5008/LCD5008/LC6008]", + "corequisite": "" + }, + { + "moduleCode": "LL4238V", + "title": "International Corporate Finance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4238.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4239V", + "title": "Law & Politics in South Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent For non law students from FASS (with at least 80MCs)", + "corequisite": "Open only to upper year students from FASS and allied departments (with at least 80 MCs)." + }, + { + "moduleCode": "LL4241", + "title": "Financial Stability and the Regulation of Banks", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4242V", + "title": "Financial Regulation and Central Banking", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have read the following module are precluded:\n(1) Financial Stability and the Regulation of Banks [LL4241/LL5241/LL6241;LL4241V/LL5241V/LL6241V]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4243", + "title": "Law, Economics, Development, and Geography", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4243V/LL5243V/LL6243V Law, Economics, Development, and Geography", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\n\nFor Non-Law students: \nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "LL4243V", + "title": "Law, Economics, Development, and Geography", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4243/LL5243/LL6243 Law, Economics, Development, and Geography", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: NUS Compulsory Core Curriculum or its equivalent \n\nFor Non-Law students: Open to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4244V", + "title": "Criminal Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students taking this module will be precluded from LL4208/LL5208/LL6208 & LL4208V/LL5208V/LL6208V ACLP, and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4245V", + "title": "Regulatory Foundations of Public Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4245/LL5245/LL6245 Regulatory Foundations of Public Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: NUS Compulsory Core Curriculum or its equivalent. A foundational course on constitutional and administrative law (from either a common law or some other jurisdiction). \n\nFor Non Law students from FASS (Political Science - with at least 80 MCs).\n\nCohort 2020 onwards: NUS Compulsory Core Curriculum or its equivalent. A foundational course on constitutional and administrative law (from either a common law or some other jurisdiction).", + "corequisite": "" + }, + { + "moduleCode": "LL4246", + "title": "International Carriage of Passengers by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4247V", + "title": "International Economic Law & Globalisation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4249", + "title": "Shareholders' Rights & Remedies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4250", + "title": "Principles of Equity Financing", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4251", + "title": "International Humanitarian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4251V", + "title": "International Humanitarian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4252", + "title": "The EU and its Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4253V", + "title": "The Law of Treaties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4254V", + "title": "Developing States in a Changing World Order", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4254/LL5254/LL6254 Developing States in a Changing World Order", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4255V", + "title": "Trade Remedy Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4256", + "title": "Comparative Constitutional Government", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4257", + "title": "Law & Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4258V", + "title": "Personal Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have read: LL4047/LL5047/LL6047/ LL4047V/LL5047V/LL6047V Personal Property I – Tangible; LL4168/LL5168/LL6168/ LL4168V/LL5168V/LL6168V Personal Property Law II – Intangible & LL4411/LL5411/LL6411 Personal Property Law (8MC) are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4259AV", + "title": "Alternative Investments", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4314/LL5314/LL6314; LL4314V/LL5314V/LL6314 Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4259V", + "title": "Alternative Investments", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4314/LL5314/LL6314; LL4314V/LL5314V/LL6314 Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4260V", + "title": "Chinese Commercial Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students should not have had past practice experience in China and should not have taken a substantially similar course.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4261V", + "title": "Employment Law & Migrant Workers Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) Only Singapore Citizens for externships at the Ministry of\nManpower beginning in July; (b) NUS Compulsory Core Law\nCurriculum, NUS Legal Skills Programme or equivalent; (c)\nCrossing Borders: Law, Migration & Citizenship\n[LL4134/LL5134/LL6134; LL4134V/LL5134V/LL6134V] (may be\ntaken concurrently).", + "corequisite": "Crossing Borders: Law, Migration and Citizenship (LL4134; LL5134; LL6134 / LL4134V; LL5134; LL6134)" + }, + { + "moduleCode": "LL4263V", + "title": "Intellectual Property Rights and Competition Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IP and Competition Law (LL4075V/LL5075V/LL6075V;\nLL4075/LL5075/LL6075)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "Law of Intellectual Property A (LL4405A/LL5405A/LL6405A/LC5405A) Law of Intellectual Property B (LL4405B/LL5405B/LL6405B/LC5405B) Foundations of IP Law (LL4070V/LL5070V/LL6070V/LC5070V; LL4070/LL5070/LL6070/LC5070]" + }, + { + "moduleCode": "LL4267V", + "title": "Architecting Deals: A Framework of Private Orderings", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4268", + "title": "Remedies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4269", + "title": "Privacy and Intellectual Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Privacy Law: Critical & Comparative Perspectives\nLL4169/LL5169/LL6169\nLL4169V / LL5169V / LL6169V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4270", + "title": "International Human Rights of Women", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4271", + "title": "Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4272", + "title": "International Financial System: Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Financial Stability & The Regulation of Banks\nLL4241; LL5241; LL6241 / LL4241V; LL5241V; LL6241V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4273", + "title": "European & International Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4274", + "title": "Comparative GST Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4275", + "title": "International Institutional Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4276", + "title": "Advanced Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Philosophical Foundations of Contract Law\nLL4187/LL5187/LL6187\nLL4187V/LL5187V/LL6187V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Contract Law", + "corequisite": "" + }, + { + "moduleCode": "LL4277V", + "title": "Medical Law and Ethics", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have read LL4400/LL5400/LL6400 BIOMEDICAL LAW & ETHICS are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4278V", + "title": "Trade and Investment Law in the Asia-Pacific", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "Public International Law: LL4050; LL5050; LL6050; LC5050 / LL4050V; LL5050V; LL6050V; LC5050V" + }, + { + "moduleCode": "LL4279V", + "title": "Access to Justice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4280V", + "title": "Crime and Companies", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4281V", + "title": "Civil Procedure", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4011; LL5011; LL6011 Civil Justice and Process\nLL4011V; LL5011V; LL6011V Civil Justice and Process", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4282V", + "title": "Resolution of Transnational Commercial Disputes", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4283V", + "title": "Artificial Intelligence, Information Science & Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\nInformation Technology Law I [LL4076/LL5076/LL6076;\nLL4076V/LL5076V/LL6076V] or Information Technology Law II\n[LL4077/LL5077/LL6077; LL4077V/LL5077V/LL6077V]\n\nGCE “A” Level Mathematics (at least), with basic understanding of\nprobability theory and linear algebra \nProgramming skills in e.g. MatLab/Octave/Java/Python/R is a bonus.", + "corequisite": "" + }, + { + "moduleCode": "LL4284", + "title": "Confucianism and Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4285V", + "title": "International Dispute Settlement", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4285/LL5285/LL6285/LC5285 International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4286V", + "title": "Transnational Terrorism and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4287V", + "title": "ASEAN Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4288V", + "title": "Business, International Commerce and the European Union", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4288/LL5288/LL6288 Business, International Commerce and the European Union", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4289V", + "title": "The Evolution of International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4289/LL5289/LL6289 The Evolution of International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. At least one prior course in international law or international arbitration, or taken concurrently", + "corequisite": "" + }, + { + "moduleCode": "LL4290V", + "title": "Legal Research: Method & Design", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4290/LL5290/LL6290 Legal Research: Method & Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4291", + "title": "Legal Pluralism and Global Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4291V/LL5291V/LL6291V Legal Pluralism and Global Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nOne prior course in either (i) law and the social sciences (anthropology, sociology, economics), or (ii) LL4050V/LL5050V/6050V/LC5050V; LL4050/LL5050/LL6050/LC5050 Public International Law or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL4291V", + "title": "Legal Pluralism and Global Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4291/LL5291/LL6291 Legal Pluralism and Global Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nOne prior course in either (i) law and the social sciences (anthropology, sociology, economics), or (ii) LL4050V/LL5050V/6050V/LC5050V; LL4050/LL5050/LL6050/LC5050 Public International Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4292V", + "title": "State Responsibility: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4292/LL5292/LL6292 State Responsibility: Theory and\nPractice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4295", + "title": "Conflict of Laws in Int’l Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4295V/LL5295V/LL6295V Conflict of Laws in Int’l Commercial Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4296", + "title": "Imitation, Innovation and Intellectual Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4296V/LL5296V/LL6296V Imitation, Innovation and Intellectual Property", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nStudents should ideally have taken a module in intellectual property or concurrently enrolled in one.", + "corequisite": "" + }, + { + "moduleCode": "LL4297", + "title": "Practice of Corporate Finance and the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4297V/LL5297V/LL6297V Practice of Corporate Finance and the Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4298", + "title": "International Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4298V/LL5298V/LL6298V International Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4299", + "title": "Advanced Issues in the Law & Practice of Int’l Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4299V/LL5299V/LL6299V Advanced Issues in the Law & Practice of Int’l Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4300", + "title": "Copyright in the Internet Age", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4076/LL5076/LL6076; LL4076V/LL5076V/LL5076V IT Law I\n(2) LL4300V/LL5300V/LL6300V Copyright in the Internet Age", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4301", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4301V/LL5301V/LL6301V Topics in Constitutional Law: Socio-Economic Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4302", + "title": "Int'l Regulation of Finance & Investment Markets", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4302V/LL5302V/LL6302V Int’l Regulation of Finance & Investment Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4302V", + "title": "Int'l Regulation of Finance & Investment Markets", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4302/LL5302/LL6302 Int’l Regulation of Finance & Investment Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4303", + "title": "Law and Literature", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4303V/LL5303V/LL6303V Law and Literature", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4304", + "title": "Global Comparative Constitutional Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4012/LL5012/LL6012; LL4012V/LL5012V/LL6012V Comparative Constitutional Law\n(2) LL4304V/LL5304V/LL6304V Global Comparative Constitutional Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4305", + "title": "IP and Human Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4305V/LL5305V/LL6305V IP and Human Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nStudents should ideally have taken a module in intellectual property or concurrently enrolled in one.", + "corequisite": "" + }, + { + "moduleCode": "LL4306", + "title": "Chinese Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4306V/LL5306V/LL6306V Banking Law and Financial Regulation in China OR Chinese Banking Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4306V", + "title": "Chinese Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4306/LL5306/LL6306 Banking Law and Financial Regulation in China OR Chinese Banking Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4307", + "title": "EU Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4307V/LL5307V/LL6307V EU Maritime Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4308V", + "title": "Behavioural Economics, Law & Regulation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4308/LL5308/LL6308 Behavioural Economics, Law & Regulation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4309", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4309V/LL5309V/LL6309V Strategies for Asian Disputes; Strategies for Asian Disputes - A Comparative Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4309V", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4309/LL5309/LL6309 Strategies for Asian Disputes; Strategies for Asian Disputes - A Comparative Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4310V", + "title": "International Organisations in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4310/LL5310/LL6310 International Organisations in International Law;\nLL4275/LL5275/LL6275 International Institutional Law;\nLL4275V/LL5275V/LL6275V International Institutional Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4311", + "title": "Islamic Law and the Family", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4311V/LL5311V/LL6311V Islamic Law and the Family", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4312V", + "title": "The Law of Global Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4312/LL5312/LL6312 The Law of Global Governance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nBackground in Public International Law and/or Administrative Law is an asset.", + "corequisite": "" + }, + { + "moduleCode": "LL4313V", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4313/LL5313/LL6313 Mediation/Conciliation of Inter- & Investor-State Disputes", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. One prior course in international arbitration or public international law, or taken concurrently.", + "corequisite": "" + }, + { + "moduleCode": "LL4314V", + "title": "Private Equity and Venture Capital: Law and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4314/LL5314/LL6314 Private Equity and Venture Capital: Law and Practice; (2) LL4259V/LL5259V/LL6259V; LL4259/LL5259/LL6259 Alternative Investments", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4316V", + "title": "Restitution of Unjust Enrichment", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4316/LL5316/LL6316 Restitution of Unjust Enrichment; LL4051/LL5051/LL6051; LL4051V/LL5051V/LL6051V Principles of Restitution", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4317V", + "title": "International Arbitration in Asian Centres", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4317/LL5317/LL6317 International Arbitration in Asian Centres", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "LL4029/LL5029/LC5262/LL6029; LL4029V/LL5029V/LC5262V/ LL6029V International Commercial Arbitration; OR LL4285/LL5285/LC5285/LL6285; LL4285V/LL5285V/LC5285V/ LL6285V International Dispute Settlement ; OR their equivalent at another University" + }, + { + "moduleCode": "LL4318V", + "title": "Public Health Law and Regulation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4318/LL5318/LL6318 Public Health Law and Regulation; \nA similar course in another faculty or law school anywhere else.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4319V", + "title": "Current Problems in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4319/LL5319/LL6319 Current Problems in International Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "Public International Law is recommended." + }, + { + "moduleCode": "LL4320", + "title": "International Space Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4320V/LL5320V/LL6320V International Space Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4320V", + "title": "International Space Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4320/LL5320/LL6320 International Space Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4321", + "title": "Deals: The Economic Structure of Business Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4321V/LL5321V/LL6312V Deals: The Economic Structure of Business Transactions \nLL4267/LL5267/LL6267; LL4267V/LL5267V/LL6267V Architecting Deals: A Framework of Private Orderings", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4322", + "title": "Trade Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4322V/LL5322V/LL6322V Trade Finance Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Students should have covered the core private law subjects of Contract, Tort and Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LL4322V", + "title": "Trade Finance Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4323", + "title": "Law of Agency", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4323V/LL5323V/LL6323V Law of Agency", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4324", + "title": "Comparative Trade Mark Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4324V/LL5324V/LL6324V Comparative Trade Mark Law; \nLL4096/LL5096/LL6096; LL4096V/LL5096V/LL6096V International Trademark Law and Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4325", + "title": "The Int'l Litigation & Procedure of State Disputes", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4325V/LL5325V/LL6325V - The Int’l Litigation & Procedure of State Disputes \n\nLL4285V/LL5285V/LC5285V/LL6285V; \nLL4285/LL5285/LC5285/LL6285 - International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4326", + "title": "Administrative Justice: Perspectives from the U.S.", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4326V/LL5326V/LL6326V Administrative Justice: Perspectives from the U.S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4327V", + "title": "Mergers and Acquisitions: A Practitioner’s Perspective", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "(1) LL4327/LL5327/LL6327 Mergers and Acquisitions: A Practitioner’s Perspective; \n(2) LL4074/LL5074/LL6074; LL4074V/LL5074V/LL6074V Mergers & Acquisitions (M&A); \n(3) LL4223/LL5223/LL6223; LL4233V/LL5223V/LL6223V Cross Border Mergers", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nContracts, Property, Equity & Trusts and Company Law. \nAn ability to engage in discussion in English.", + "corequisite": "" + }, + { + "moduleCode": "LL4328", + "title": "Sports Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4328V/LL5328V/LL6328V Sports Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4329", + "title": "Cross-Border Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4329V/LL5329V/LL6329V Cross-Border Litigation;\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation; \nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4330", + "title": "Advanced Trusts Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4330V/LL5330V/LL6330V Advanced Trusts Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4331", + "title": "The Rule of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4331V/LL5331V/LL6331V The Rule of Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4332", + "title": "Fair Use in Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4332V/LL5332V/LL6332V Fair Use in Theory and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4333", + "title": "International Criminal Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "If there is any other substantive international criminal law course offered by colleagues as there will be substantive overlap.\n\nLL4333V/LL5333V/LL6333V International Criminal Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nNo auditing", + "corequisite": "" + }, + { + "moduleCode": "LL4333V", + "title": "International Criminal Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "If there is any other substantive international criminal law course offered by colleagues as there will be substantive overlap.\n\nLL4333/LL5333/LL6333 International Criminal Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nNo auditing", + "corequisite": "" + }, + { + "moduleCode": "LL4334", + "title": "Law and Society in Southeast Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4334V/LL5334V/LL6334V Law and Society in Southeast Asia (5MCs)\nSC4883 Selected Topics in Law and Justice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4335V", + "title": "Multinational Enterprises and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4335/LL5335/LL6335 Multinational Enterprises and International Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4338V", + "title": "Advanced Practicum in International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4338/LL5338/LL6338 Advanced Practicum in International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nLL4029/LL5029/LC5262/LL6029; \nLL4029V/LL5029V/LC5262V/LL6029V International \nCommercial Arbitration; OR \nLL4285/LL5285/LC5285/LL6285; \nLL4285V/LL5285V/LC5285V/LL6285V International \nDispute Settlement; OR their equivalent at another university", + "corequisite": "" + }, + { + "moduleCode": "LL4339", + "title": "Comparative Evidence in International Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4339V/LL5339V/LL6339V Comparative Evidence in International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4340", + "title": "International Refugee Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4340V/LL5340V/LL6340V International Refugee Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL4340V", + "title": "International Refugee Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4340/LL5340/LL6340 International Refugee Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL4341", + "title": "The Law and Politics of Forced Migration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4341V/LL5341V/LL6341V The Law and Politics of Forced Migration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL4341V", + "title": "The Law and Politics of Forced Migration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4341/LL5341/LL6341 The Law and Politics of Forced Migration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL4342", + "title": "Taxation of Cross-Border Commercial Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4035/LL5035/LL6035/LC5035/LC5035A/LC5035B/; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions;\n\nLL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4342V", + "title": "Taxation of Cross-Border Commercial Transactions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4035/LL5035/LL6035/LC5035/LC5035A/LC5035B/; LL4035V/LL5035V/LL6035V\nTaxation Issues in Cross-Border Transactions;\n\nLL4342/LL5342/LL6342 Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4343", + "title": "International Regulation of the Global Commons", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4343V/LL5343V/LL6343V International Regulation of the Global Commons", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4343V", + "title": "International Regulation of the Global Commons", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4343/LL5343/LL6343 International Regulation of the Global Commons", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4344", + "title": "Public and Private International Copyright Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4344V/LL5344V/LL6344V Public and Private International Copyright Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4344V", + "title": "Public and Private International Copyright Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4344/LL5344/LL6344 Public and Private International Copyright Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4345", + "title": "The Fulfilled Life and the Life of the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4345V/LL5345V/LL6345V The Fulfilled Life and the Life\nof the Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4345V", + "title": "The Fulfilled Life and the Life of the Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4345/LL5345/LL6345 The Fulfilled Life and the Life of\nthe Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4346", + "title": "Interim Measures in International Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nInternational Commercial Arbitration\nor\nInternational Dispute Settlement", + "corequisite": "International Commercial Arbitration or International Dispute Settlement" + }, + { + "moduleCode": "LL4346V", + "title": "Interim Measures in International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nInternational Commercial Arbitration\nor\nInternational Dispute Settlement", + "corequisite": "International Commercial Arbitration or International Dispute Settlement" + }, + { + "moduleCode": "LL4347", + "title": "Art & Cultural Heritage Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4347V", + "title": "Art & Cultural Heritage Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347 Art & Cultural Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4348", + "title": "Monetary Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4348V/LL5348V/LL6348V Monetary Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLaw of Contract; Principles of Property Law; Equity and Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL4348V", + "title": "Monetary Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4348/LL5348/LL6348 Monetary Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLaw of Contract; Principles of Property Law; Equity and Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL4349", + "title": "Energy Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4349V/LL5349V/LL6349V Energy Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4349V", + "title": "Energy Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4349/LL5349/LL6349 Energy Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4350", + "title": "Privacy & Data Protection Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4350V/LL5350V/LL6350V Privacy & Data Protection Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4350V", + "title": "Privacy & Data Protection Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4350/LL5350/LL6350 Privacy & Data Protection Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4351", + "title": "Comparative Corporate Law in East Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4351V/LL5351V/LL6351V Comparative Corporate Law in East Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2008 Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4351V", + "title": "Comparative Corporate Law in East Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4351/LL5351/LL6351 Comparative Corporate Law in East Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2008 Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4352", + "title": "China and International Economic Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4352V/ LL5352V/LL6352V China and International Economic Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4352V", + "title": "China and International Economic Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4352V/ LL5352V/LL6352V China and International Economic Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4353", + "title": "Character Evidence in the Common Law World", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4353V/LL5353V/LL6353V Character Evidence in the Common Law World", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC3001A Evidence (A) / LC3001B Evidence (B) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4353V", + "title": "Character Evidence in the Common Law World", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4353V/LL5353V/LL6353V Character Evidence in the Common Law World", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC3001A Evidence (A) / LC3001B Evidence (B) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL4354", + "title": "Comparative Human Rights Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4354V/LL5354V/LL6353V Comparative Human Rights Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nConstitutional Law", + "corequisite": "" + }, + { + "moduleCode": "LL4354V", + "title": "Comparative Human Rights Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4354V/LL5354V/LL6353V Comparative Human Rights Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nConstitutional Law", + "corequisite": "" + }, + { + "moduleCode": "LL4355", + "title": "International Law and Development", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4355V/LL5355V/LL6355V International Law and Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4355V", + "title": "International Law and Development", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4355/LL5355/LL6355 International Law and Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4356", + "title": "International Economic Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4356V / LL5356V / LL6356V International Investment Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Investment Law course OR International Trade Law course OR taken concurrently OR relevant experience in lieu of.", + "corequisite": "" + }, + { + "moduleCode": "LL4356V", + "title": "International Economic Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4356 / LL5356 / LL6356 International Investment Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Investment Law course OR International Trade Law course OR taken concurrently OR relevant experience in lieu of.", + "corequisite": "" + }, + { + "moduleCode": "LL4357", + "title": "Regulation & Political Economy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4357V/LL5357V/LL6357V - Regulation & Political Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4357V", + "title": "Regulation & Political Economy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4357/LL5357/LL6357 Regulation & Political Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4358Z", + "title": "ICC Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "NUS Compulsory Core Law Curriculum or equivalent" + }, + { + "moduleCode": "LL4359Z", + "title": "SIAC and Institutional Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nAt least one prior course in international arbitration.", + "corequisite": "" + }, + { + "moduleCode": "LL4360Z", + "title": "Current Challenges to Investment Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4361Z", + "title": "Complex Arbitrations: Multiparty – Multicontract", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4362V", + "title": "Advanced Criminal Litigation - Forensics on Trial", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "FSC4206 Advanced Criminal Litigation - Forensics on Trial", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For LAW students:\nNUS Compulsory Core Law Curriculum or equivalent.\nLC1001% Criminal Law\n\nFor FoS students:\nLSM1306 Forensic Science", + "corequisite": "" + }, + { + "moduleCode": "LL4363", + "title": "Sentencing Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4363V/LL5363V/LL6363V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4363V", + "title": "Sentencing Law and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4363/LL5363/LL6363", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4364", + "title": "Principles of Civil Law: Law of Obligations & Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4364V/LL5364V/LL6364V Principles of Civil Law: Law of Obligations & Property\n\nStudents from civil law jurisdictions or students who have a previous law degree from a civil law jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4364V", + "title": "Principles of Civil Law: Law of Obligations & Property", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "LL4364/LL5364/LL6364 Principles of Civil Law: Law of Obligations & Property\n\nStudents from civil law jurisdictions or students who have a previous law degree from a civil law jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4367", + "title": "Singapore at the UN - A Clinical Externship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4367V/LL5367V/LL6367V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n\nSingapore Law in Context or equivalent course focusing\non the Singapore legal system in the political and social\ncontext of Singapore.\n\nPublic International Law or equivalent courses, including\nUnited Nations Law.\n\nAs the class size is limited, students must undergo a\nselection process which may include an interview.", + "corequisite": "" + }, + { + "moduleCode": "LL4367V", + "title": "Singapore at the UN - A Clinical Externship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4367/LL5367/LL6367", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n\nSingapore Law in Context or equivalent course focusing\non the Singapore legal system in the political and social\ncontext of Singapore.\n\nPublic International Law or equivalent courses, including\nUnited Nations Law.\n\nAs the class size is limited, students must undergo a\nselection process which may include an interview.", + "corequisite": "" + }, + { + "moduleCode": "LL4368", + "title": "Comparative Constitutionalism", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368V/LL5368V/LL6368V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4368V", + "title": "Comparative Constitutionalism", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368/LL5368/LL6368", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4369", + "title": "Constitutionalism in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4369V/LL5369V/LL6369V Constitutionalism in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4369V", + "title": "Constitutionalism in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4369/LL5369/LL6369 Constitutionalism in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4370", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IFS4101 (for dual-track LLB and BSc (Comp. - IS) students; LL4370V/LL5370V/LL6370V The Law of Cybersecurity, Privacy and Data Compliance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4370V", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IFS4101 (for dual-track LLB and BSc (Comp. - IS) students; LL4370/LL5370/LL6370 The Law of Cybersecurity, Privacy and Data Compliance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4371", + "title": "Charity Law Today", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4371V/LL5371V/LL63871V Charity Law Today", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4371V", + "title": "Charity Law Today", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4371/LL5371/LL6371 Charity Law Today", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4372", + "title": "International Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4372V/LL5372V/LL6372V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "[LL4070/LL5070/LL6070; LL4070V/LL5070V/LL6070V] [LL4405A/LL5405A/LL6405A/LC5405A]" + }, + { + "moduleCode": "LL4372V", + "title": "International Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4372/LL5372/LL6372", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "[LL4070/LL5070/LL6070; LL4070V/LL5070V/LL6070V] [LL4405A/LL5405A/LL6405A/LC5405A]" + }, + { + "moduleCode": "LL4373", + "title": "Advanced Copyright", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4373V/LL5373V/LL6373V Advanced Copyright", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4373V", + "title": "Advanced Copyright", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4373/LL5373/LL6373 Advanced Copyright", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4374", + "title": "Water Rights & Resources: Issues in Law & Development", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4374V/LL5374V/LL6374V Water Rights & Resources: Issues in Law & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4374V", + "title": "Water Rights & Resources: Issues in Law & Development", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4374/LL5374/LL6374 Water Rights & Resources: Issues in Law & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4375", + "title": "Traditional Chinese Legal Thought", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4375V/LL5375V/LL6375V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4375V", + "title": "Traditional Chinese Legal Thought", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4375/LL5375/LL6375", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4376", + "title": "Regulation & Private Law in Banking & Financial Service", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4376V / LL5376V / LL6376V Regulation & Private Law in Banking & Financial Service", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4376V", + "title": "Regulation & Private Law in Banking & Financial Service", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4376 / LL5376 / LL6376 Regulation & Private Law in Banking & Financial Service", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4377", + "title": "Law in Action: Legal Policymaking Externship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4377V/LL5377V/LL6377V Law in Action: Legal Policymaking Externship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nSingaporean Citizens / PR\nAs the class size is limited, students must undergo a selection process which may include an interview.\nAll participants are subject to security screening and must obtain the requisite security clearance before they can be admitted to the course.", + "corequisite": "" + }, + { + "moduleCode": "LL4377V", + "title": "Law in Action: Legal Policymaking Externship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4377/LL5377/LL6377 Law in Action: Legal Policymaking Externship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nSingaporean Citizens / PR\nAs the class size is limited, students must undergo a selection process which may include an interview.\nAll participants are subject to security screening and must obtain the requisite security clearance before they can be admitted to the course.", + "corequisite": "" + }, + { + "moduleCode": "LL4379", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4379V/LL5379V/LL6379V Future of Int’l Commercial Arbitration in APAC Region", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Commercial Arbitration\nLL4029V,LL5029V,LL6029V,LC5262V;\nLL4029AV,LL5029AV,LL6029AV,LC5262AV", + "corequisite": "International Commercial Arbitration LL4029V,LL5029V,LL6029V,LC5262V; LL4029AV,LL5029AV,LL6029AV,LC5262AV" + }, + { + "moduleCode": "LL4379V", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4379/LL5379/LL6379 Future of Int’l Commercial Arbitration in APAC Region", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Commercial Arbitration\nLL4029V,LL5029V,LL6029V,LC5262V;\nLL4029AV,LL5029AV,LL6029AV,LC5262AV", + "corequisite": "International Commercial Arbitration LL4029V,LL5029V,LL6029V,LC5262V; LL4029AV,LL5029AV,LL6029AV,LC5262AV" + }, + { + "moduleCode": "LL4381", + "title": "Heritage Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347;LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law; LL4381V/LL5381V/LL6381V Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4381V", + "title": "Heritage Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347;LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law; LL4381/LL5381/LL6381 Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4382", + "title": "Core Aspects of Private International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Not open to anyone who has done:\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation;\nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws;\nLL4205V/LL5205V/LL6205V/LLD5205V;\nLL4205/LL5205/LL6205/LLD5205V Maritime Conflict of Laws at NUS Law, or a substantially similar course elsewhere", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4382V", + "title": "Core Aspects of Private International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Not open to anyone who has done:\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation;\nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws;\nLL4205V/LL5205V/LL6205V;LLD5205V;\nLL4205/LL5205/LL6205/LL5205V Maritime Conflict of Laws at NUS Law, or a substantially similar course elsewhere", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4383Z", + "title": "International Arbitration & the New York Convention", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4384", + "title": "Harms and Wrongs", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4384V/LL5384V/LL6384V Harms and Wrongs", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4384V", + "title": "Harms and Wrongs", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4384/LL5384/LL6384 Harms and Wrongs", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4385", + "title": "Taxation Law & the Global Digital Economy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4385V/LL5385V/LL6385V Taxation Law & the Global Digital Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4385V", + "title": "Taxation Law & the Global Digital Economy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4385/LL5385/LL6385 Taxation Law & the Global Digital Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4387", + "title": "Regulation of Digital Platform", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4387V/LL5387V/LL6387V Regulation of Digital Platforms", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4387V", + "title": "Regulation of Digital Platforms", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4387/LL5387/LL6387 Regulation of Digital Platforms", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4388", + "title": "Comparative Civil Law: Thai Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4388V/LL5388V/LL6388V Comparative Civil Law: Thai Contract Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4388V", + "title": "Comparative Civil Law: Thai Contract Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4388/LL5388/LL6388 Comparative Civil Law: Thai Contract Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4389", + "title": "Asset-Based Financing: Quasi-Security Devices", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4389V/LL5389V/LL6389V Asset-Based Financing: Quasi-Security Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4389V", + "title": "Asset-Based Financing: Quasi-Security Devices", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4389/LL5389/LL6389 Asset-Based Financing: Quasi-Security Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4393", + "title": "Liability of Corporate Groups and Networks", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC1004 Law of Torts", + "corequisite": "LC2008 Company Law" + }, + { + "moduleCode": "LL4393V", + "title": "Liability of Corporate Groups and Networks", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC1004 Law of Torts", + "corequisite": "LC2008 Company Law" + }, + { + "moduleCode": "LL4395", + "title": "The Law & Practice of Modern Trust Structures", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4395V/LL5395V/LL6395V The Law & Practice of Modern Trust Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2006 Equity & Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL4395V", + "title": "The Law & Practice of Modern Trust Structures", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4395/LL5395/LL6395 The Law & Practice of Modern Trust Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2006 Equity & Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL4396", + "title": "University Research Opportunities Program", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "To refer to the guidelines on the UROP form.", + "corequisite": "" + }, + { + "moduleCode": "LL4397", + "title": "University Research Opportunities Program", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "To refer to the guidelines on the UROP form.", + "corequisite": "" + }, + { + "moduleCode": "LL4398", + "title": "University Research Opportunities Program", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "To refer to the guidelines on the UROP form.", + "corequisite": "" + }, + { + "moduleCode": "LL4399", + "title": "University Research Opportunities Program", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "To refer to the guidelines on the UROP form.", + "corequisite": "" + }, + { + "moduleCode": "LL4400", + "title": "Biomedical Law & Ethics", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4402", + "title": "Corporate Insolvency Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Corporate Insolvency & Rescues I (LLA4038); Corporate Insolvency & Resuces II (LLA4039)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LLB2008) or its equivalent in a common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL4403", + "title": "Family Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4405A", + "title": "Law of Intellectual Property (a)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4405B/LL5405B/LL6405B Law of IP & LL4070/LL5070/LC5070/LL6070 Foundations\nof IP Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4405B", + "title": "Law of Intellectual Property (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4405A/LL5405A/LL6405A Law of IP & LL4070/LL5070/LC5070/LL6070 Foundations\nof IP Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4407", + "title": "Law Of Insurance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4409", + "title": "International Corporate Finance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL4411", + "title": "Personal Property Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4047 Personal Property I - Tangible\nLL4168 Personal Property Law II - Intangible", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Some parts of the syllabus require students to refresh learning in equity & trusts, the laws of company, economic torts and insolvency.", + "corequisite": "" + }, + { + "moduleCode": "LL4412", + "title": "Securities and Capital Markets Regulation", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students doing or have done any of the following module(s) are precluded: (1) International Corporate Finance [8MC - LL4409/LL5409/LLD5409/LL6409; 4MC - LL4238/LL5238/LL6238; 5MC – LL4238V/LL5238V/LL6238V]; (2) Corporate Finance Law & Practice in Singapore [4MC - LL4182/LL5182/LL6182; 5MC – LL4182V/LL5182V/LL6182V]; (3) Securities Regulation [4MC - L4055/LL5055/LL6055; 5MC – LL4055V/LL5055V/LL6055V]; (4) Securities Regulation [Module code: L53.3040 OR LW.10180] under the NYU@NUS Summer Session.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law [LC2008/LLB2008] or its equivalent in a developed common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL4413", + "title": "Civil Justice and Procedure", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have not studied the core subjects in a Common Law curriculum. \n\nNot open to students who are, or have been, legal practitioners or who have worked in any legal field. \n\nLL4011; LL5011; LL6011 / LL4011V; LL5011V; LL6011V Civil Justice & Process \n\nLL4281; LL5281; LL6281 / LL4281V; LL5281V; LL6281V Civil Procedure", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n(It is impossible to study common law adversarial procedure without a background in these subjects.)", + "corequisite": "" + }, + { + "moduleCode": "LL4433", + "title": "Global Data Privacy Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4433V/LL5433V/LL6433V Global Data Privacy Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4433V", + "title": "Global Data Privacy Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4433/LL5433/LL6433 Global Data Privacy Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4434", + "title": "International Commodity Trading Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4434V/LL5434V/LL6434V International Commodity Trading Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4434V", + "title": "International Commodity Trading Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4434/LL5434/LL6434 International Commodity Trading Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4435", + "title": "Foundations of Environmental Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4435V/LL5435V/LL6435V Foundations of Environmental Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL4435V", + "title": "Foundations of Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4435/LL5435/LL6435 Foundations of Environmental Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5001", + "title": "Administration of Criminal Justice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5002", + "title": "Admiralty Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5002V", + "title": "Admiralty Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5002.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5003V", + "title": "China, India and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5003.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5004", + "title": "Aviation Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5004V", + "title": "Aviation Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5005V", + "title": "Bank Documentation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken Bank Documentation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Note to students from civil law jurisdiction: this module adopts a common law approach.", + "corequisite": "" + }, + { + "moduleCode": "LL5006", + "title": "Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5006V", + "title": "Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5006.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5007", + "title": "Biotechnology Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5007V", + "title": "Biotechnology Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5007.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5008A", + "title": "Carriage of Goods By Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5008AV", + "title": "Carriage of Goods By Sea", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken Carriage of Goods By Sea.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5008B", + "title": "Charterparties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5008BV", + "title": "Charterparties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5008B.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5009", + "title": "Chinese Legal Tradition & Legal Chinese", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5009GRSI", + "title": "Graduate Research Seminar I (Legal Scholarship)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5009GRSII", + "title": "Graduate Research Seminar II (Research Methods)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LC5009 / LC6009 Graduate Research Seminar", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LL5009GRSI / LL6009GRSI Graduate Research Seminar I (Legal Scholarship)", + "corequisite": "" + }, + { + "moduleCode": "LL5009V", + "title": "Chinese Legal Tradition And Legal Chinese", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Exchange students from law schools in China and post-graduate students who are graduates of law schools in China are precluded from taking this course for credit.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Students must have obtained a B4 and above in CL or CL2 (AO Level) or B4 and above in Higher Chinese (HCL or CL1)", + "corequisite": "" + }, + { + "moduleCode": "LL5010", + "title": "Civil Law Tradition", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5010A", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5010AV", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5010A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5011", + "title": "Civil Justice & Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4011V/LL5011V/LL6011V Civil Justice & Process;\nLL4413/LL5413/LL6413 Civil Justice and Procedure.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "corequisite": "" + }, + { + "moduleCode": "LL5011V", + "title": "Civil Justice & Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4011/LL5011/LL6011 Civil Justice & Process;\nLL4413/LL5413/LL6413 Civil Justice and Procedure.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "corequisite": "" + }, + { + "moduleCode": "LL5012V", + "title": "Comparative Constitutional Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5012", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5013V", + "title": "Comparative Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5013", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5014", + "title": "Construction Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5014V", + "title": "Construction Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5014", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5016A", + "title": "Topics in Int’l Criminal Law (A): Aggression", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5017", + "title": "Contract and Commercial Law in Civil-Law Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Any student pursuing or having obtained a basic law degree in a civil law jurisdiction is precluded from taking this course. This course is for common law students who\nhave not studied the civil law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. \n\nContract Law (or the equivalent common law contract course for exchange and graduate students)", + "corequisite": "" + }, + { + "moduleCode": "LL5018", + "title": "Corporate Tax: Profits & Distributions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5018V", + "title": "Corporate Tax: Profits & Distributions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5018", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5019", + "title": "Credit & Security", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5019V", + "title": "Credit & Security", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5021V", + "title": "Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5022V", + "title": "Globalization And International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5022", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5024", + "title": "Indonesian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5024V", + "title": "Indonesian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5024", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5025", + "title": "Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL5025V", + "title": "Rights", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5025", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5026V", + "title": "Infocoms Law: Competition & Convergence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5026", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5027", + "title": "International & Comparative Law Of Sale", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5029", + "title": "International Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5029AV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5029BV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5029V", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5029", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5030", + "title": "International Commercial Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5030V", + "title": "International Commercial Litigation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5030", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5031", + "title": "International Environmental Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5031V", + "title": "International Environmental Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5031", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5032", + "title": "International Investment Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5032V", + "title": "International Investment Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5032", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5033", + "title": "International Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5033V", + "title": "International Legal Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5033", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5034", + "title": "International Regulation of Shipping", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5034V", + "title": "International Regulation of Shipping", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5034.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent. Students who have completed a course in Law of the Sea or Ocean Law & Policy may have a slight advantage.", + "corequisite": "" + }, + { + "moduleCode": "LL5035", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4035V/LL5035V/LL6035V / LC5035 / LC5035V / LC5035A / LC5035B Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5035V", + "title": "Taxation Issues in Cross-Border Transaction", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "(1) LL4035/LL5035/LL6035/LC5035/LC5035V/LC5035A/ LC5035B Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5037", + "title": "Sociology of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5037V", + "title": "Sociology of Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5037", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law Students: NUS Compulsory Core Law Curriculum or its equivalent; For Non-Law Students: Open to students from Arts and Social Sciences with at least 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL5042V", + "title": "Law and Religion", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5042.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law - NUS Compulsory Core Curriculum or its equivalent.\nFor Non-Law – At least 3rd year students from Arts and Social Sciences.", + "corequisite": "" + }, + { + "moduleCode": "LL5043", + "title": "Law of Marine Insurance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5043V", + "title": "Law Of Marine Insurance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5043.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5044", + "title": "Mediation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5044V", + "title": "Mediation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Not open to students who have successfully completed Mediation.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5045", + "title": "Negotiation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5045V", + "title": "Negotiation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Note: Not open to students who have successfully completed Negotiation Workshop or its equivalent elsewhere. Not open to incoming exchange students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5049", + "title": "Principles of Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5049V", + "title": "Principles Of Conflict Of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5049.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5050", + "title": "Public International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5050V", + "title": "Public International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5050.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5051", + "title": "Principles of Restitution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5054", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5054V", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5055", + "title": "Securities Regulation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4055V/LL5055V/LL6055V Securities Regulation;\nStudents doing or have done any of the following module(s) are precluded: (1) International Corporate Finance [8MC -LL4409/LL5409/LLD5409/LL6409; 4MC - LL4238/LL5238/LL6238; 5MC - LL4238V/LL5238V/LL6238V]; (2) Corporate Finance Law & Practice in Singapore - 4MC - LL4182/LL5182/LL6182; 5MC - LL4182V/LL5182V/LL6182V; (3) 8MC - Securities and Capital Markets Regulation - LL4412/LL5412/LL6412.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL5056A", + "title": "Tax Planning And Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5056AV", + "title": "Tax Planning And Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL5056B", + "title": "Tax Planning And Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5056BV", + "title": "Tax Planning And Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL5057V", + "title": "Theoretical Foundations Of Criminal Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5057.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Module is also open to non-law students from FASS Philosophy or Political Science dept with at least 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL5059V", + "title": "United Nations Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5059.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5060", + "title": "World Trade Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5060B", + "title": "World Trade Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4199A/LL4199B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5061", + "title": "Inquiry", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "For Non-Law Students: Open to students from University Scholars Programme who have read 80MCs or more." + }, + { + "moduleCode": "LL5061V", + "title": "Inquiry", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5061.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "For Non-Law Students: Open to students from University Scholars Programme who have read 80MCs or more." + }, + { + "moduleCode": "LL5062", + "title": "Legal Reasoning & Legal Theory", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\n\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL5062V", + "title": "Legal Reasoning & Legal Theory", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5062", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\n\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL5063", + "title": "Business & Finance For Lawyers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5063V", + "title": "Business & Finance For Lawyers", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who are taking or have taken LL5063.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) Company Law or its equivalent in a common law jurisdiction (may be taken concurrently)", + "corequisite": "" + }, + { + "moduleCode": "LL5064", + "title": "Competition Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Competition Law courses taught in European, American and Singapore law schools.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5064V", + "title": "Competition Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Competition Law courses taught in European, American and Singapore law schools.\nStudents who are taking or have taken LL5064", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5065", + "title": "Comparative Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5067", + "title": "Comparative Criminal Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5069", + "title": "European Union Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5069V", + "title": "European Union Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5070", + "title": "Foundations of IP Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5070V", + "title": "Foundations Of Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "The Law of Intellectual Property. Students who are taking or have taken LL5070.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5071", + "title": "International Patent Law, Policy and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "May vary from year to year depending on the modules offered by visitors to NUS Law in any given year.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) A foundation or basic knowledge in IP law would be useful.", + "corequisite": "" + }, + { + "moduleCode": "LL5071V", + "title": "International Patent Law, Policy and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "May vary from year to year depending on the modules offered by visitors to NUS Law in any given year.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) A foundation or basic knowledge in IP law would be useful.", + "corequisite": "" + }, + { + "moduleCode": "LL5072B", + "title": "Topics in IP Law (B): IP Valuation: Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5073", + "title": "International Criminal Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5073V", + "title": "International Criminal Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5073.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5074", + "title": "Mergers & Acquisitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Company Law (LC2008) or its equivalent in a common law jurisdiction.", + "corequisite": "" + }, + { + "moduleCode": "LL5074V", + "title": "Mergers & Acquisitions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Must not have taken a substantially similar course. Not open to students who have taken/taking LL4223/LL5223/LL6223 Cross Border Mergers. Not open to students who have taken Mergers and Acquisition (M&A).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5075", + "title": "IP and Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5075V", + "title": "IP and Competition Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5075.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5076", + "title": "It Law I", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5076V", + "title": "IT Law I", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5076.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5077V", + "title": "IT Law II", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5077.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5078", + "title": "Law & Practice of Investment Treaty Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5079", + "title": "State and Company in Legal-Historical Perspective", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5081", + "title": "Comparative Advocacy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5082", + "title": "Law & Social Movements", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5085", + "title": "International Trusts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5088", + "title": "Chinese Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5088V", + "title": "Chinese Contract Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Exchange students from law schools in China and postgraduate students who are graduates of law schools in China are precluded from taking this course for credit.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Note: This course is delivered bi-lingually, yet predominantly in English. It is a plus but not a must that students have learned Chinese Legal Tradition and Legal Chinese (LL4009), or have\nobtained a B4 and above in CL or CL2 ('AO' Level) or B4 and above in Higher Chinese (HCL or CL1).", + "corequisite": "" + }, + { + "moduleCode": "LL5089", + "title": "Chinese Corporate and Securities Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5089V", + "title": "Chinese Corporate & Securities Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4089.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5093", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5093V", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5094", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5094AV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5094BV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5094CV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5094V", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5096", + "title": "Int''l Trademark Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5096V", + "title": "International Trademark Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5096.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5097", + "title": "Islamic Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5097V", + "title": "Islamic Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5097.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5099", + "title": "Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5099V", + "title": "Maritime Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5099.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5100", + "title": "Arbitration and Dispute Resolution in China", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4100V/LL5100V/LL6100V Arbitration and Dispute Resolution in China", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5100V", + "title": "Arbitration and Dispute Resolution in China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4100/LL5100/LL6100 Arbitration and Dispute Resolution in China", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5102", + "title": "Advanced Torts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5102V", + "title": "Advanced Torts", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5104", + "title": "Jurisprudence", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\n\nFor non-law students: 3rd & 4th Year students from Arts & Social Sciences Faculty", + "corequisite": "" + }, + { + "moduleCode": "LL5104V", + "title": "Jurisprudence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5104.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5107V", + "title": "Partnership and Alternative Business Vehicles", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5109", + "title": "International Law & Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5109V", + "title": "International Law & Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5109.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5111V", + "title": "International Copyright Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5111.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5122", + "title": "The Contemporary Indian Legal System", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5122V", + "title": "The Contemporary Indian Legal System", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5122.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5123", + "title": "International Insolvency Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5125", + "title": "Law & Development in China", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5125V", + "title": "Law And Development In China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5125.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5128", + "title": "Chinese Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5129", + "title": "Indian Business Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Currently, the course is precluded for Exchange students from law schools in India and post-graduate students who are graduates of law schools in India as well as students who have taken LL4104 Foreign Investment Law of India. It is proposed that these preclusions be removed and that the course will remain open for all interested students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent (b) Company Law (LC2008) or its equivalent in a common law jurisdiction (may be taken concurrently)", + "corequisite": "" + }, + { + "moduleCode": "LL5129V", + "title": "Indian Business Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5129.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5131", + "title": "Law, Governance & Development in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5131V", + "title": "Law, Governance & Development in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5131.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5133", + "title": "Human Rights in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5133V", + "title": "Human Rights in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5133.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5134", + "title": "Crossing Borders: Law, Migration & Citizenship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\nFor non‐law students: 3rd & 4th Year students from Arts & Social Sciences Faculty", + "corequisite": "" + }, + { + "moduleCode": "LL5134V", + "title": "Crossing Borders: Law, Migration & Citizenship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5134.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5135", + "title": "Patent Law & Practice: Perspectives from the U.S", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4071/LL5071/LL6071; LL4071V/LL5071V/LL6017V International Patent Law, Policy and Practice; \n(2) LL4405B/LL5405B/LL6405B/LC5405B Law of Intellectual Property (B); \n(3) LL4007/LL5007/LL6007; LL4007V/LL5007V/LL6007V Biotechnology Law;\n(4) LL4076/LL5076/LL6076; LL4076V/LL5076V/LL6076V IT Law I\n(5) LL4135V/LL5135V/LL6135V Patent Law and Practice: Perspectives from the U.S.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5138", + "title": "International & Comparative Law of Sale in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5138V", + "title": "Int'l&Comp Law of Sale in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5138", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5140", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4140V/LL5140V/LL6140V/LLD5140V Law of the Sea: Theory and Practice;\nLL4140V/LL5140V/LL6140V/LLD5140V Ocean Law & Policy in Asia; LL4046V/LL5046V/LL6046V Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5140V", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4140/LL5140/LL6140/LLD5140 Law of the Sea: Theory and Practice;\nLL4140/LL5140/LL6140/LLD5140 Ocean Law & Policy in Asia; LL4046/LL5046/LL6046 Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5146", + "title": "Law & Society", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5146V", + "title": "Law & Society", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5146", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5148", + "title": "Secured Transactions Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Credit & Security (LL4019/LL5019/LL6019; LL4019V/LL5019V/LL6019V)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5150", + "title": "International Investment Law and Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4150V/LL5150V/LL6150V International Investment Law and Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5150V", + "title": "International Investment Law and Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4150/LL5150/LL6150 International Investment Law and Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5153", + "title": "International Police Enforcement Cooperation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5155", + "title": "Topics in Law & Economics", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nTertiary-level module in Microeconomics.", + "corequisite": "" + }, + { + "moduleCode": "LL5158", + "title": "Climate Change Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4158V/LL5158V/LL6158V Climate Change Law;\nLL4221/LL5221/LL6221; LL4221V/LL5221V/LL6221V Climate Change Law & Policy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5158V", + "title": "Climate Change Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4158/LL5158/LL6158 Climate Change Law;\nLL4221/LL5221/LL6221; LL4221V/LL5221V/LL6221V Climate Change Law & Policy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5159", + "title": "The Economic Analysis of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have done Economic Analysis of Law [Module code: L56.3020] under the NYU@NUS Summer Session are precluded. LL4159V/LL5159V/LL6159V The Economic Analysis of Law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5161", + "title": "Intelligence Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5161V", + "title": "Intelligence Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5161", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5162", + "title": "Singapore Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Previously completed a course in Company Law.", + "corequisite": "" + }, + { + "moduleCode": "LL5162V", + "title": "Singapore Corporate Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Previously completed a course in Company Law.", + "corequisite": "" + }, + { + "moduleCode": "LL5164", + "title": "International Projects Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5164V", + "title": "International Projects Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5164.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5170", + "title": "Comparative Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5171", + "title": "Asean Environmental Law, Policy and Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5171V", + "title": "ASEAN Environmental Law, Policy & Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5171.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5172", + "title": "Japanese Corporate Law & Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5173", + "title": "Comparative Corporate Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5173V", + "title": "Comparative Corporate Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5173.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5175", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5175V", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5175.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5177", + "title": "Entertainment Law: Pop Iconography & Celebrity", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5177V", + "title": "Entertainment Law: Pop Iconography & Celebrity", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL5177.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5178", + "title": "Law and Practice of Investment Treaties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Must not have taken a substantially similar course. \nNot open to students who have taken/taking (1) LL4032/LL5032/LL6032; LL4032V/LL5032V/LL6032V International Investment Law; (2) LL4078/LL5078/LL6078; LL4078V/LL5078V/LL6078V Law & Practice of Investment Treaty Arbitration.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5178V", + "title": "Law and Practice of Investment Treaties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Must not have taken a substantially similar course. \nNot open to students who have taken/taking (1) LL4032/LL5032/LL6032; LL4032V/LL5032V/LL6032V International Investment Law; (2) LL4078/LL5078/LL6078; LL4078V/LL5078V/LL6078V Law & Practice of Investment Treaty Arbitration.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5179", + "title": "International Alternative Dispute Resolution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5180", + "title": "Choice of Law & Jurisdiction in Int’l Commercial Contracts in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5185", + "title": "Government Regulations: Law, Policy & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5185V", + "title": "Government Regulations: Law, Policy & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5187", + "title": "Philosophical Foundations of Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5188", + "title": "Corporate Law and Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5189", + "title": "Corporate Social Responsibility", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4189V/LL5189V/LL6189V Corporate Social Responsibility", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5189V", + "title": "Corporate Social Responsibility", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4189/LL5189/LL6189 Corporate Social Responsibility", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5190", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nSingapore Legal System (LC1005); Public law (LC2007).", + "corequisite": "" + }, + { + "moduleCode": "LL5190V", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5190.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5191", + "title": "Wealth Management Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent (b) Principles of Conflict of Laws [LL4049] is recommended.", + "corequisite": "" + }, + { + "moduleCode": "LL5192", + "title": "Private International Law of IP", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5193", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5193V", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5193.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5194", + "title": "Partnership and LLP Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5195V", + "title": "International Economic Law & Relations", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5195.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5197", + "title": "Comparative State and Religion in Southeast Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\n\nFor non‐law students: 3rd & 4th Year students from Arts & Social Sciences Faculty who has completed PS1101E Introduction to Politics", + "corequisite": "" + }, + { + "moduleCode": "LL5197V", + "title": "Comparative State and Religion in Southeast Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5197.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5202", + "title": "ASEAN Economic Community Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5202V", + "title": "ASEAN Economic Community Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5202.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL5203", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5203A", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5203B", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5203C", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5204", + "title": "Islamic Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5205", + "title": "Maritime Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "LL4002 Admiralty Law and Practice (Co-requisite)" + }, + { + "moduleCode": "LL5205V", + "title": "Maritime Conflict of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5205.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5208", + "title": "Advanced Criminal Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5208V", + "title": "Advanced Criminal Legal Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5208.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5209", + "title": "Legal Argument & Narrative", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5209V", + "title": "Legal Argument & Narrative", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL5209.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5210", + "title": "Intellectual Property And International Trade", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5210V", + "title": "Intellectual Property And International Trade", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5210.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5211", + "title": "International Public Monetary and Payment Systems Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5213", + "title": "Transnational Law in Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS compulsory core curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5214", + "title": "International and Comparative Oil and Gas Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5216", + "title": "Cyber Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5217", + "title": "Comparative & International Anti-Corruption Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5218V", + "title": "Asian Legal Studies Colloquium", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5218.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5219", + "title": "The Trial of Jesus in Western Legal Thought", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5220", + "title": "International Business Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5221", + "title": "Climate Change Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5222", + "title": "The Law & Politics of International Courts & Tribunals", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5223", + "title": "Cross Border Mergers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. Must have read Tax Module or Securities Regulation", + "corequisite": "" + }, + { + "moduleCode": "LL5224", + "title": "Cybercrime & Information Security Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5225", + "title": "Topics in the Law and Economics of Competition Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5226", + "title": "Multimodal Transport Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5226V", + "title": "Multimodal Transport Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5226.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5227", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5228", + "title": "The Use of Force in International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5228V", + "title": "The Use of Force in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5228.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5229", + "title": "Corporate Governance in the US and UK", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4065/LL5065/LL6065 Comparative Corporate \nGovernance & LL4162/LL5162/LL6162 Corporate \nGovernance in Singapore", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5231", + "title": "Transition and the Rule of Law in Myanmar", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5233", + "title": "European Company Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5233V", + "title": "European Company Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5233.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5234", + "title": "Property Theory", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum For non-law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL5234V", + "title": "Property Theory", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5234.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5235", + "title": "International Contract Law: Principles and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4235V/LL5235V/LL6235V International Contract Law: Principles and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5235V", + "title": "International Contract Law: Principles and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4235/LL5235/LL6235 International Contract Law: Principles and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5237V", + "title": "Law, Institutions, and Business in Greater China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5238", + "title": "International Corporate Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students should not have done a substantially similar subject. Students doing or have done any of the following module(s) are precluded: \n1) Securities Regulation [LL4055/LL5055/LL6055]; \n(2) Corporate Law & Finance [LL4188/LL5188/LLD5188/LL6188]; \n(3) Corporate Finance Law & Practice in Singapore [LL4182/LL5182/LLD5182/LL6182]; \n(4) International Corporate Finance [LL4409/LL5409/LL6409]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent; Law of Contract [LC1003 or equivalent]; \nCompany Law [LC2008/LC5008/LCD5008/LC6008]", + "corequisite": "" + }, + { + "moduleCode": "LL5238V", + "title": "International Corporate Finance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5238.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5239V", + "title": "Law & Politics in South Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent For non law students from FASS (with at least 80MCs)", + "corequisite": "Open only to upper year students from FASS and allied departments (with at least 80 MCs)." + }, + { + "moduleCode": "LL5241", + "title": "Financial Stability and the Regulation of Banks", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5242S", + "title": "Financial Regulation and Central Banking", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have taken or are taking the modules\n- Banking Law [LL4006/LL5006/LL6006; LL4006V/LL5006V/LL6006V]\n- Law of Central Banking [LL4242V/LL5242V/LL6242V]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5242V", + "title": "Financial Regulation and Central Banking", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have read the following module are precluded:\n(1) Financial Stability and the Regulation of Banks [LL4241/LL5241/LL6241;LL4241V/LL5241V/LL6241V]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5243", + "title": "Law, Economics, Development, and Geography", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4243V/LL5243V/LL6243V Law, Economics, Development, and Geography", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\n\nFor Non-Law students: \nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "LL5243V", + "title": "Law, Economics, Development, and Geography", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4243/LL5243/LL6243 Law, Economics, Development, and Geography", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\n\nFor Non-Law students: \nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "LL5244V", + "title": "Criminal Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students taking this module will be precluded from LL4208/LL5208/LL6208 & LL4208V/LL5208V/LL6208V ACLP, and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5245V", + "title": "Regulatory Foundations of Public Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4245/LL5245/LL6245 Regulatory Foundations of Public Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. A foundational course on constitutional and administrative law (from either a common law or some other jurisdiction).\n\nFor Non Law students from FASS (Political Science - with at least 80 MCs).", + "corequisite": "" + }, + { + "moduleCode": "LL5246", + "title": "International Carriage of Passengers by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5247V", + "title": "International Economic Law & Globalisation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5249", + "title": "Shareholders' Rights & Remedies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5250", + "title": "Principles of Equity Financing", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5251", + "title": "International Humanitarian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5251V", + "title": "International Humanitarian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5252", + "title": "The EU and its Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5253V", + "title": "The Law of Treaties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5254V", + "title": "Developing States in a Changing World Order", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4254/LL5254/LL6254 Developing States in a Changing World Order", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5255V", + "title": "Trade Remedy Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5256", + "title": "Comparative Constitutional Government", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5257", + "title": "Law & Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5258V", + "title": "Personal Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have read: LL4047/LL5047/LL6047/ LL4047V/LL5047V/LL6047V Personal Property I – Tangible; LL4168/LL5168/LL6168/ LL4168V/LL5168V/LL6168V Personal Property Law II – Intangible & LL4411/LL5411/LL6411 Personal Property Law (8MC) are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5259AV", + "title": "Alternative Investments", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4314/LL5314/LL6314; LL4314V/LL5314V/LL6314 Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5259V", + "title": "Alternative Investments", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4314/LL5314/LL6314; LL4314V/LL5314V/LL6314 Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5260V", + "title": "Chinese Commercial Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students should not have had past practice experience in China and should not have taken a substantially similar course.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5261V", + "title": "Employment Law & Migrant Workers Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) Only Singapore Citizens for externships at the Ministry of\nManpower beginning in July; (b) NUS Compulsory Core Law\nCurriculum, NUS Legal Skills Programme or equivalent; (c)\nCrossing Borders: Law, Migration & Citizenship\n[LL4134/LL5134/LL6134; LL4134V/LL5134V/LL6134V] (may be\ntaken concurrently).", + "corequisite": "Crossing Borders: Law, Migration and Citizenship (LL4134; LL5134; LL6134 / LL4134V; LL5134; LL6134)" + }, + { + "moduleCode": "LL5263V", + "title": "Intellectual Property Rights and Competition Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IP and Competition Law (LL4075V/LL5075V/LL6075V;\nLL4075/LL5075/LL6075)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "Law of Intellectual Property A (LL4405A/LL5405A/LL6405A/LC5405A) Law of Intellectual Property B (LL4405B/LL5405B/LL6405B/LC5405B) Foundations of IP Law (LL4070V/LL5070V/LL6070V/LC5070V; LL4070/LL5070/LL6070/LC5070]" + }, + { + "moduleCode": "LL5267V", + "title": "Architecting Deals: A Framework of Private Orderings", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5268", + "title": "Remedies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5269", + "title": "Privacy and Intellectual Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Privacy Law: Critical & Comparative Perspectives\nLL4169/LL5169/LL6169\nLL4169V / LL5169V / LL6169V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5270", + "title": "International Human Rights of Women", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5271", + "title": "Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5272", + "title": "International Financial System: Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Financial Stability & The Regulation of Banks\nLL4241; LL5241; LL6241 / LL4241V; LL5241V; LL6241V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5273", + "title": "European & International Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5274", + "title": "Comparative GST Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5275", + "title": "International Institutional Law:", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5276", + "title": "Advanced Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Philosophical Foundations of Contract Law\nLL4187/LL5187/LL6187\nLL4187V/LL5187V/LL6187V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Contract Law", + "corequisite": "" + }, + { + "moduleCode": "LL5277V", + "title": "Medical Law and Ethics", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have read LL4400/LL5400/LL6400 BIOMEDICAL LAW & ETHICS are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5278V", + "title": "Trade and Investment Law in the Asia-Pacific", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "Public International Law: LL4050; LL5050; LL6050; LC5050 / LL4050V; LL5050V; LL6050V; LC5050V" + }, + { + "moduleCode": "LL5279V", + "title": "Access to Justice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5280V", + "title": "Crime and Companies", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5281V", + "title": "Civil Procedure", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4011; LL5011; LL6011 Civil Justice and Process\nLL4011V; LL5011V; LL6011V Civil Justice and Process", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5282V", + "title": "Resolution of Transnational Commercial Disputes", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5283V", + "title": "Artificial Intelligence, Information Science & Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\nInformation Technology Law I [LL4076/LL5076/LL6076;\nLL4076V/LL5076V/LL6076V] or Information Technology Law II\n[LL4077/LL5077/LL6077; LL4077V/LL5077V/LL6077V]\n\nGCE “A” Level Mathematics (at least), with basic understanding of\nprobability theory and linear algebra \nProgramming skills in e.g. MatLab/Octave/Java/Python/R is a bonus.", + "corequisite": "" + }, + { + "moduleCode": "LL5284", + "title": "Confucianism and Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5285V", + "title": "International Dispute Settlement", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4285/LL5285/LL6285/LC5285 International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5286V", + "title": "Transnational Terrorism and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5287V", + "title": "ASEAN Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5288V", + "title": "Business, International Commerce and the European Union", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4288/LL5288/LL6288 Business, International Commerce and the European Union", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5289V", + "title": "The Evolution of International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4289/LL5289/LL6289 The Evolution of International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. At least one prior course in international law or international arbitration, or taken concurrently", + "corequisite": "" + }, + { + "moduleCode": "LL5290V", + "title": "Legal Research: Method & Design", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4290/LL5290/LL6290 Legal Research: Method & Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5291", + "title": "Legal Pluralism and Global Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4291V/LL5291V/LL6291V Legal Pluralism and Global Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nOne prior course in either (i) law and the social sciences (anthropology, sociology, economics), or (ii) LL4050V/LL5050V/6050V/LC5050V; LL4050/LL5050/LL6050/LC5050 Public International Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5291V", + "title": "Legal Pluralism and Global Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4291/LL5291/LL6291 Legal Pluralism and Global Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nOne prior course in either (i) law and the social sciences (anthropology, sociology, economics), or (ii) LL4050V/LL5050V/6050V/LC5050V; LL4050/LL5050/LL6050/LC5050 Public International Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5292V", + "title": "State Responsibility: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4292/LL5292/LL6292 State Responsibility: Theory and\nPractice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5293S", + "title": "Business Torts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "No", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "No", + "corequisite": "No" + }, + { + "moduleCode": "LL5294S", + "title": "Security and Insolvency Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Credit and Security (LL4019V/LL5019V/LL6019V)\nStudents who have studied credit and security or\ninsolvency law or similar subjects in a commonwealth\njurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LC5230 Elements of Company Law or its equivalent in a common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL5295", + "title": "Conflict of Laws in Int’l Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4295V/LL5295V/LL6295V Conflict of Laws in Int’l Commercial Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5296", + "title": "Imitation, Innovation and Intellectual Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4296V/LL5296V/LL6296V Imitation, Innovation and Intellectual Property", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nStudents should ideally have taken a module in intellectual property or concurrently enrolled in one.", + "corequisite": "" + }, + { + "moduleCode": "LL5297", + "title": "Practice of Corporate Finance and the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4297V/LL5297V/LL6297V Practice of Corporate Finance and the Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5298", + "title": "International Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4298V/LL5298V/LL6298V International Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5299", + "title": "Advanced Issues in the Law & Practice of Int’l Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4299V/LL5299V/LL6299V Advanced Issues in the Law & Practice of Int’l Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5300", + "title": "Copyright in the Internet Age", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4076/LL5076/LL6076; LL4076V/LL5076V/LL5076V IT Law I\n(2) LL4300V/LL5300V/LL6300V Copyright in the Internet Age", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5301", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4301V/LL5301V/LL6301V Topics in Constitutional Law: Socio-Economic Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5302", + "title": "Int'l Regulation of Finance & Investment Markets", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4302V/LL5302V/LL6302V Int’l Regulation of Finance & Investment Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5302V", + "title": "Int'l Regulation of Finance & Investment Markets", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4302/LL5302/LL6302 Int’l Regulation of Finance & Investment Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5303", + "title": "Law and Literature", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4303V/LL5303V/LL6303V Law and Literature", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5304", + "title": "Global Comparative Constitutional Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4012/LL5012/LL6012; LL4012V/LL5012V/LL6012V Comparative Constitutional Law\n(2) LL4304V/LL5304V/LL6304V Global Comparative Constitutional Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5305", + "title": "IP and Human Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4305V/LL5305V/LL6305V IP and Human Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nStudents should ideally have taken a module in intellectual\nproperty or concurrently enrolled in one.", + "corequisite": "" + }, + { + "moduleCode": "LL5306", + "title": "Chinese Banking Law Chinese Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4306V/LL5306V/LL6306V Banking Law and Financial Regulation in China OR Chinese Banking Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5306V", + "title": "Chinese Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4306/LL5306/LL6306 Banking Law and Financial Regulation in China OR Chinese Banking Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5307", + "title": "EU Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4307V/LL5307V/LL6307V EU Maritime Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5308V", + "title": "Behavioural Economics, Law & Regulation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4308/LL5308/LL6308 Behavioural Economics, Law & Regulation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5309", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4309V/LL5309V/LL6309V Strategies for Asian Disputes; Strategies for Asian Disputes - A Comparative Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5309V", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4309/LL5309/LL6309 Strategies for Asian Disputes; Strategies for Asian Disputes - A Comparative Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5310V", + "title": "International Organisations in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4310/LL5310/LL6310 International Organisations in International Law;\nLL4275/LL5275/LL6275 International Institutional Law;\nLL4275V/LL5275V/LL6275V International Institutional Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5311", + "title": "Islamic Law and the Family", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4311V/LL5311V/LL6311V Islamic Law and the Family", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5312V", + "title": "The Law of Global Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4312/LL5312/LL6312 The Law of Global Governance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nBackground in Public International Law and/or Administrative\nLaw is an asset.", + "corequisite": "" + }, + { + "moduleCode": "LL5313V", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4313/LL5313/LL6313 Mediation/Conciliation of Inter- & Investor-State Disputes", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. One prior course in international arbitration or public international law, or taken concurrently.", + "corequisite": "" + }, + { + "moduleCode": "LL5314S", + "title": "Private Equity and Venture Capital: Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4259V/LL5259V/LL6259V Alternative Investment Vehicles", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5314V", + "title": "Private Equity and Venture Capital: Law and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4314/LL5314/LL6314 Private Equity and Venture Capital: Law and Practice; (2) LL4259V/LL5259V/LL6259V; LL4259/LL5259/LL6259 Alternative Investments (3) LL5314S Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5315S", + "title": "China's Tax Law and International Tax Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5316V", + "title": "Restitution of Unjust Enrichment", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4316/LL5316/LL6316 Restitution of Unjust Enrichment; LL4051/LL5051/LL6051; LL4051V/LL5051V/LL6051V Principles of Restitution", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5317V", + "title": "International Arbitration in Asian Centres", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4317/LL5317/LL6317 International Arbitration in Asian Centres", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "LL4029/LL5029/LC5262/LL6029; LL4029V/LL5029V/LC5262V/ LL6029V International Commercial Arbitration; OR LL4285/LL5285/LC5285/LL6285; LL4285V/LL5285V/LC5285V/ LL6285V International Dispute Settlement ; OR their equivalent at another University" + }, + { + "moduleCode": "LL5318V", + "title": "Public Health Law and Regulation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4318/LL5318/LL6318 Public Health Law and Regulation; \nA similar course in another faculty or law school anywhere else.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5319V", + "title": "Current Problems in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4319/LL5319/LL6319 Current Problems in International Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "Public International Law is recommended." + }, + { + "moduleCode": "LL5320", + "title": "International Space Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4320V/LL5320V/LL6320V International Space Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5320V", + "title": "International Space Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4320/LL5320/LL6320 International Space Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5321", + "title": "Deals: The Economic Structure of Business Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4321V/LL5321V/LL6312V Deals: The Economic Structure of Business Transactions \nLL4267/LL5267/LL6267; LL4267V/LL5267V/LL6267V Architecting Deals: A Framework of Private Orderings", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5322", + "title": "Trade Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4322V/LL5322V/LL6322V Trade Finance Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Students should have covered the core private law subjects of Contract, Tort and Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LL5322V", + "title": "Trade Finance Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5323", + "title": "Law of Agency", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4323V/LL5323V/LL6323V Law of Agency", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5324", + "title": "Comparative Trade Mark Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4324V/LL5324V/LL6324V Comparative Trade Mark Law; \nLL4096/LL5096/LL6096; LL4096V/LL5096V/LL6096V International Trademark Law and Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5325", + "title": "The Int'l Litigation & Procedure of State Disputes", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4325V/LL5325V/LL6325V - The Int’l Litigation & Procedure of State Disputes \n\nLL4285V/LL5285V/LC5285V/LL6285V; \nLL4285/LL5285/LC5285/LL6285 - International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5326", + "title": "Administrative Justice: Perspectives from the U.S.", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4326V/LL5326V/LL6326V Administrative Justice: Perspectives from the U.S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5327V", + "title": "Mergers and Acquisitions: A Practitioner’s Perspective", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "(1) LL4327/LL5327/LL6327 Mergers and Acquisitions: A Practitioner’s Perspective; \n(2) LL4074/LL5074/LL6074; LL4074V/LL5074V/LL6074V Mergers & Acquisitions (M&A); \n(3) LL4223/LL5223/LL6223; LL4233V/LL5223V/LL6223V Cross Border Mergers", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nContracts, Property, Equity & Trusts and Company Law. \nAn ability to engage in discussion in English.", + "corequisite": "" + }, + { + "moduleCode": "LL5328", + "title": "Sports Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4328V/LL5328V/LL6328V Sports Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5329", + "title": "Cross-Border Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4329V/LL5329V/LL6329V Cross-Border Litigation;\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation; \nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5330", + "title": "Advanced Trusts Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4330V/LL5330V/LL6330V Advanced Trusts Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5331", + "title": "The Rule of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4331V/LL5331V/LL6331V The Rule of Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5332", + "title": "Fair Use in Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4332V/LL5332V/LL6332V Fair Use in Theory and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5333", + "title": "International Criminal Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "If there is any other substantive international criminal law course offered by colleagues as there will be substantive overlap.\n\nLL4333V/LL5333V/LL6333V International Criminal Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nNo auditing", + "corequisite": "" + }, + { + "moduleCode": "LL5333V", + "title": "International Criminal Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "If there is any other substantive international criminal law course offered by colleagues as there will be substantive overlap.\n\nLL4333/LL5333/LL6333 International Criminal Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nNo auditing", + "corequisite": "" + }, + { + "moduleCode": "LL5334", + "title": "Law and Society in Southeast Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4334V/LL5334V/LL6334V Law and Society in Southeast Asia (5MCs)\nSC4883 Selected Topics in Law and Justice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5335V", + "title": "Multinational Enterprises and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4335/LL5335/LL6335 Multinational Enterprises and International Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5338V", + "title": "Advanced Practicum in International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4338/LL5338/LL6338 Advanced Practicum in International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nLL4029/LL5029/LC5262/LL6029; \nLL4029V/LL5029V/LC5262V/LL6029V International \nCommercial Arbitration; OR \nLL4285/LL5285/LC5285/LL6285; \nLL4285V/LL5285V/LC5285V/LL6285V International \nDispute Settlement; OR their equivalent at another university", + "corequisite": "" + }, + { + "moduleCode": "LL5339", + "title": "Comparative Evidence in International Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4339V/LL5339V/LL6339V Comparative Evidence in International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5340", + "title": "International Refugee Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4340V/LL5340V/LL6340V International Refugee Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL5340V", + "title": "International Refugee Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4340/LL5340/LL6340 International Refugee Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL5341", + "title": "The Law and Politics of Forced Migration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4341V/LL5341V/LL6341V The Law and Politics of Forced Migration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL5341V", + "title": "The Law and Politics of Forced Migration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4341/LL5341/LL6341 The Law and Politics of Forced Migration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL5342", + "title": "Taxation of Cross-Border Commercial Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4035/LL5035/LL6035/LC5035/LC5035A/LC5035B/; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions;\n\nLL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5342V", + "title": "Taxation of Cross-Border Commercial Transactions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4035/LL5035/LL6035/LC5035/LC5035A/LC5035B/; LL4035V/LL5035V/LL6035V\nTaxation Issues in Cross-Border Transactions;\n\nLL4342/LL5342/LL6342 Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5343", + "title": "International Regulation of the Global Commons", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4343V/LL5343V/LL6343V International Regulation of the Global Commons", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5343V", + "title": "International Regulation of the Global Commons", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4343/LL5343/LL6343 International Regulation of the Global Commons", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5344", + "title": "Public and Private International Copyright Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4344V/LL5344V/LL6344V Public and Private International Copyright Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5344V", + "title": "Public and Private International Copyright Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4344/LL5344/LL6344 Public and Private International Copyright Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5345", + "title": "The Fulfilled Life and the Life of the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4345V/LL5345V/LL6345V The Fulfilled Life and the Life\nof the Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5345V", + "title": "The Fulfilled Life and the Life of the Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4345/LL5345/LL6345 The Fulfilled Life and the Life of\nthe Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5346", + "title": "Interim Measures in International Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nInternational Commercial Arbitration\nor\nInternational Dispute Settlement", + "corequisite": "International Commercial Arbitration or International Dispute Settlement" + }, + { + "moduleCode": "LL5346V", + "title": "Interim Measures in International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nInternational Commercial Arbitration\nor\nInternational Dispute Settlement", + "corequisite": "International Commercial Arbitration or International Dispute Settlement" + }, + { + "moduleCode": "LL5347", + "title": "Art & Cultural Heritage Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5347V", + "title": "Art & Cultural Heritage Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347 Art & Cultural Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5348", + "title": "Monetary Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4348V/LL5348V/LL6348V Monetary Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLaw of Contract; Principles of Property Law; Equity and Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL5348V", + "title": "Monetary Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4348/LL5348/LL6348 Monetary Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLaw of Contract; Principles of Property Law; Equity and Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL5349", + "title": "Energy Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4349V/LL5349V/LL6349V Energy Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5349V", + "title": "Energy Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4349/LL5349/LL6349 Energy Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5350", + "title": "Privacy & Data Protection Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4350V/LL5350V/LL6350V Privacy & Data Protection Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5350V", + "title": "Privacy & Data Protection Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4350/LL5350/LL6350 Privacy & Data Protection Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5351", + "title": "Comparative Corporate Law in East Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4351V/LL5351V/LL6351V Comparative Corporate Law in East Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2008 Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5351V", + "title": "Comparative Corporate Law in East Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4351/LL5351/LL6351 Comparative Corporate Law in East Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2008 Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5352", + "title": "China and International Economic Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4352V/ LL5352V/LL6352V China and International Economic Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5352V", + "title": "China and International Economic Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4352V/ LL5352V/LL6352V China and International Economic Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5353", + "title": "Character Evidence in the Common Law World", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4353V/LL5353V/LL6353V Character Evidence in the Common Law World", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC3001A Evidence (A) / LC3001B Evidence (B) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5353V", + "title": "Character Evidence in the Common Law World", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4353V/LL5353V/LL6353V Character Evidence in the Common Law World", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC3001A Evidence (A) / LC3001B Evidence (B) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL5354", + "title": "Comparative Human Rights Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4354V/LL5354V/LL6353V Comparative Human Rights Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nConstitutional Law", + "corequisite": "" + }, + { + "moduleCode": "LL5354V", + "title": "Comparative Human Rights Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4354V/LL5354V/LL6353V Comparative Human Rights Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nConstitutional Law", + "corequisite": "" + }, + { + "moduleCode": "LL5355", + "title": "International Law and Development", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4355V/LL5355V/LL6355V International Law and Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5355V", + "title": "International Law and Development", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4355/LL5355/LL6355 International Law and Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5356", + "title": "International Economic Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4356V / LL5356V / LL6356V International Investment Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Investment Law course OR International Trade Law course OR taken concurrently OR relevant experience in lieu of.", + "corequisite": "" + }, + { + "moduleCode": "LL5356V", + "title": "International Economic Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4356 / LL5356 / LL6356 International Investment Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Investment Law course OR International Trade Law course OR taken concurrently OR relevant experience in lieu of.", + "corequisite": "" + }, + { + "moduleCode": "LL5357", + "title": "Regulation & Political Economy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4357V/LL5357V/LL6357V - Regulation & Political Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5357V", + "title": "Regulation & Political Economy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4357/LL5357/LL6357 Regulation & Political Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5358Z", + "title": "ICC Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "NUS Compulsory Core Law Curriculum or equivalent" + }, + { + "moduleCode": "LL5359Z", + "title": "SIAC and Institutional Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nAt least one prior course in international arbitration.", + "corequisite": "" + }, + { + "moduleCode": "LL5360Z", + "title": "Current Challenges to Investment Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5361Z", + "title": "Complex Arbitrations: Multiparty – Multicontract", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5362V", + "title": "Advanced Criminal Litigation - Forensics on Trial", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "FSC4206 Advanced Criminal Litigation - Forensics on Trial", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For LAW students:\nNUS Compulsory Core Law Curriculum or equivalent.\nLC1001% Criminal Law\n\nFor FoS students:\nLSM1306 Forensic Science", + "corequisite": "" + }, + { + "moduleCode": "LL5363", + "title": "Sentencing Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4363V/LL5363V/LL6363V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5363V", + "title": "Sentencing Law and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4363/LL5363/LL6363", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5364", + "title": "Principles of Civil Law: Law of Obligations & Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4364V/LL5364V/LL6364V Principles of Civil Law: Law of Obligations & Property\n\nStudents from civil law jurisdictions or students who have a previous law degree from a civil law jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5364V", + "title": "Principles of Civil Law: Law of Obligations & Property", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "LL4364/LL5364/LL6364 Principles of Civil Law: Law of Obligations & Property\n\nStudents from civil law jurisdictions or students who have a previous law degree from a civil law jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5367", + "title": "Singapore at the UN - A Clinical Externship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4367V/LL5367V/LL6367V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n\nSingapore Law in Context or equivalent course focusing\non the Singapore legal system in the political and social\ncontext of Singapore.\n\nPublic International Law or equivalent courses, including\nUnited Nations Law.\n\nAs the class size is limited, students must undergo a\nselection process which may include an interview.", + "corequisite": "" + }, + { + "moduleCode": "LL5367V", + "title": "Singapore at the UN - A Clinical Externship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4367/LL5367/LL6367", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n\nSingapore Law in Context or equivalent course focusing\non the Singapore legal system in the political and social\ncontext of Singapore.\n\nPublic International Law or equivalent courses, including\nUnited Nations Law.\n\nAs the class size is limited, students must undergo a\nselection process which may include an interview.", + "corequisite": "" + }, + { + "moduleCode": "LL5368", + "title": "Comparative Constitutionalism", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368V/LL5368V/LL6368V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5368V", + "title": "Comparative Constitutionalism", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368/LL5368/LL6368", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5369", + "title": "Constitutionalism in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4369V/LL5369V/LL6369V Constitutionalism in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5369V", + "title": "Constitutionalism in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4369/LL5369/LL6369 Constitutionalism in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5370", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IFS4101 (for dual-track LLB and BSc (Comp. - IS) students; LL4370V/LL5370V/LL6370V The Law of Cybersecurity, Privacy and Data Compliance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5370V", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IFS4101 (for dual-track LLB and BSc (Comp. - IS) students; LL4370/LL5370/LL6370 The Law of Cybersecurity, Privacy and Data Compliance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5371", + "title": "Charity Law Today", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4371V/LL5371V/LL63871V Charity Law Today", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5371V", + "title": "Charity Law Today", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4371/LL5371/LL6371 Charity Law Today", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5372", + "title": "International Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4372V/LL5372V/LL6372V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "[LL4070/LL5070/LL6070; LL4070V/LL5070V/LL6070V] [LL4405A/LL5405A/LL6405A/LC5405A]" + }, + { + "moduleCode": "LL5372V", + "title": "International Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4372/LL5372/LL6372", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "[LL4070/LL5070/LL6070; LL4070V/LL5070V/LL6070V] [LL4405A/LL5405A/LL6405A/LC5405A]" + }, + { + "moduleCode": "LL5373", + "title": "Advanced Copyright", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4373V/LL5373V/LL6373V Advanced Copyright", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5373V", + "title": "Advanced Copyright", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4373/LL5373/LL6373 Advanced Copyright", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5374", + "title": "Water Rights & Resources: Issues in Law & Development", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4374V/LL5374V/LL6374V Water Rights & Resources: Issues in Law & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5374V", + "title": "Water Rights & Resources: Issues in Law & Development", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4374/LL5374/LL6374 Water Rights & Resources: Issues in Law & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5375", + "title": "Traditional Chinese Legal Thought", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4375V/LL5375V/LL6375V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5375V", + "title": "Traditional Chinese Legal Thought", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4375/LL5375/LL6375", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5376", + "title": "Regulation & Private Law in Banking & Financial Service", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4376V / LL5376V / LL6376V Regulation & Private Law in Banking & Financial Service", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5376V", + "title": "Regulation & Private Law in Banking & Financial Service", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4376 / LL5376 / LL6376 Regulation & Private Law in Banking & Financial Service", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5377", + "title": "Law in Action: Legal Policymaking Externship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4377V/LL5377V/LL6377V Law in Action: Legal Policymaking Externship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nSingaporean Citizens / PR\nAs the class size is limited, students must undergo a selection process which may include an interview.\nAll participants are subject to security screening and must obtain the requisite security clearance before they can be admitted to the course.", + "corequisite": "" + }, + { + "moduleCode": "LL5377V", + "title": "Law in Action: Legal Policymaking Externship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4377/LL5377/LL6377 Law in Action: Legal Policymaking Externship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nSingaporean Citizens / PR\nAs the class size is limited, students must undergo a selection process which may include an interview.\nAll participants are subject to security screening and must obtain the requisite security clearance before they can be admitted to the course.", + "corequisite": "" + }, + { + "moduleCode": "LL5379", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4379V/LL5379V/LL6379V Future of Int’l Commercial Arbitration in APAC Region", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Commercial Arbitration\nLL4029V,LL5029V,LL6029V,LC5262V;\nLL4029AV,LL5029AV,LL6029AV,LC5262AV", + "corequisite": "International Commercial Arbitration LL4029V,LL5029V,LL6029V,LC5262V; LL4029AV,LL5029AV,LL6029AV,LC5262AV" + }, + { + "moduleCode": "LL5379V", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4379/LL5379/LL6379 Future of Int’l Commercial Arbitration in APAC Region", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Commercial Arbitration\nLL4029V,LL5029V,LL6029V,LC5262V;\nLL4029AV,LL5029AV,LL6029AV,LC5262AV", + "corequisite": "International Commercial Arbitration LL4029V,LL5029V,LL6029V,LC5262V; LL4029AV,LL5029AV,LL6029AV,LC5262AV" + }, + { + "moduleCode": "LL5381", + "title": "Heritage Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347;LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law; LL4381V/LL5381V/LL6381V Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5381V", + "title": "Heritage Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347;LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law; LL4381/LL5381/LL6381 Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5382", + "title": "Core Aspects of Private International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Not open to anyone who has done:\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation;\nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws;\nLL4205V/LL5205V/LL6205V/LLD5205V;\nLL4205/LL5205/LL6205/LLD5205V Maritime Conflict of Laws at NUS Law, or a substantially similar course elsewhere", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5382V", + "title": "Core Aspects of Private International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Not open to anyone who has done:\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation;\nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws;\nLL4205V/LL5205V/LL6205V;LLD5205V;\nLL4205/LL5205/LL6205/LL5205V Maritime Conflict of Laws at NUS Law, or a substantially similar course elsewhere", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5383Z", + "title": "International Arbitration & the New York Convention", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5384", + "title": "Harms and Wrongs", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4384V/LL5384V/LL6384V Harms and Wrongs", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5384V", + "title": "Harms and Wrongs", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4384/LL5384/LL6384 Harms and Wrongs", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5385", + "title": "Taxation Law & the Global Digital Economy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4385V/LL5385V/LL6385V Taxation Law & the Global Digital Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5385V", + "title": "Taxation Law & the Global Digital Economy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4385/LL5385/LL6385 Taxation Law & the Global Digital Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5387", + "title": "Regulation of Digital Platform", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4387V/LL5387V/LL6387V Regulation of Digital Platforms", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5387V", + "title": "Regulation of Digital Platforms", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4387/LL5387/LL6387 Regulation of Digital Platforms", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5388", + "title": "Comparative Civil Law: Thai Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4388V/LL5388V/LL6388V Comparative Civil Law: Thai Contract Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5388V", + "title": "Comparative Civil Law: Thai Contract Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4388/LL5388/LL6388 Comparative Civil Law: Thai Contract Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5389", + "title": "Asset-Based Financing: Quasi-Security Devices", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4389V/LL5389V/LL6389V Asset-Based Financing: Quasi-Security Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5389V", + "title": "Asset-Based Financing: Quasi-Security Devices", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4389/LL5389/LL6389 Asset-Based Financing: Quasi-Security Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5393", + "title": "Liability of Corporate Groups and Networks", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC1004 Law of Torts", + "corequisite": "LC2008 Company Law" + }, + { + "moduleCode": "LL5393V", + "title": "Liability of Corporate Groups and Networks", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC1004 Law of Torts", + "corequisite": "LC2008 Company Law" + }, + { + "moduleCode": "LL5395", + "title": "The Law & Practice of Modern Trust Structures", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4395V/LL5395V/LL6395V The Law & Practice of Modern Trust Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2006 Equity & Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL5395V", + "title": "The Law & Practice of Modern Trust Structures", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4395/LL5395/LL6395 The Law & Practice of Modern Trust Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2006 Equity & Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL5396", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5396V", + "title": "International Arbitration & Dispute Resolution Research", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "LC5262V/LL4029V/LL5029V/LL6029V & LC5285V/LL4285V/LL5285V/LL6285V" + }, + { + "moduleCode": "LL5397", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5397V", + "title": "International Arbitration & Dispute Resolution Research", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "LC5262V/LL4029V/LL5029V/LL6029V & LC5285V/LL4285V/LL5285V/LL6285V" + }, + { + "moduleCode": "LL5398", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5399", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5400", + "title": "Biomedical Law & Ethics", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5402", + "title": "Corporate Insolvency Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5403", + "title": "Family Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5405A", + "title": "Law of Intellectual Property (a)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5405B", + "title": "Law of Intellectual Property (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5407", + "title": "Law of Insurance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5409", + "title": "International Corporate Finance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL5411", + "title": "Personal Property Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4047 Personal Property I - Tangible\nLL4168 Personal Property Law II - Intangible", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Some parts of the syllabus require students to refresh learning in equity & trusts, the laws of company, economic\ntorts and insolvency.", + "corequisite": "" + }, + { + "moduleCode": "LL5412", + "title": "Securities and Capital Markets Regulation", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students doing or have done any of the following module(s) are precluded: (1) International Corporate Finance [8MC - LL4409/LL5409/LLD5409/LL6409; 4MC - LL4238/LL5238/LL6238; 5MC – LL4238V/LL5238V/LL6238V]; (2) Corporate Finance Law & Practice in Singapore [4MC - LL4182/LL5182/LL6182; 5MC – LL4182V/LL5182V/LL6182V]; (3) Securities Regulation [4MC - L4055/LL5055/LL6055; 5MC – LL4055V/LL5055V/LL6055V]; (4) Securities Regulation [Module code: L53.3040 OR LW.10180] under the NYU@NUS Summer Session.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law [LC2008/LLB2008] or its equivalent in a developed common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL5413", + "title": "Civil Justice and Procedure", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have not studied the core subjects in a Common Law curriculum. \n\nNot open to students who are, or have been, legal practitioners or who have worked in any legal field. \n\nLL4011; LL5011; LL6011 / LL4011V; LL5011V; LL6011V Civil Justice & Process \n\nLL4281; LL5281; LL6281 / LL4281V; LL5281V; LL6281V Civil Procedure", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n(It is impossible to study common law adversarial procedure without a background in these subjects.)", + "corequisite": "" + }, + { + "moduleCode": "LL5433", + "title": "Global Data Privacy Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4433V/LL5433V/LL6433V Global Data Privacy Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5433V", + "title": "Global Data Privacy Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4433/LL5433/LL6433 Global Data Privacy Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5434", + "title": "International Commodity Trading Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4434V/LL5434V/LL6434V International Commodity Trading Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5434V", + "title": "International Commodity Trading Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4434/LL5434/LL6434 International Commodity Trading Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5435", + "title": "Foundations of Environmental Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4435V/LL5435V/LL6435V Foundations of Environmental Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL5435V", + "title": "Foundations of Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4435/LL5435/LL6435 Foundations of Environmental Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6001", + "title": "Administration Of Criminal Justice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6002", + "title": "Admiralty Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6002V", + "title": "Admiralty Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6002.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6003V", + "title": "China, India and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6003.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6004", + "title": "Aviation Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6004V", + "title": "Aviation Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6005V", + "title": "Bank Documentation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken Bank Documentation.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Note to students from civil law jurisdiction: this module adopts a common law approach.", + "corequisite": "" + }, + { + "moduleCode": "LL6006", + "title": "Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6006V", + "title": "Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6006.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6007", + "title": "Biotechnology Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6007V", + "title": "Biotechnology Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6007.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6008A", + "title": "Carriage of Goods by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6008AV", + "title": "Carriage of Goods By Sea", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken Carriage of Goods by Sea.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6008B", + "title": "Carriage of Goods by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6008BV", + "title": "Charterparties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6008B.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6009", + "title": "Chinese Legal Tradition And Legal Chinese", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6009GRSI", + "title": "Graduate Research Seminar I (Legal Scholarship)", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6009V", + "title": "Chinese Legal Tradition And Legal Chinese", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Exchange students from law schools in China and post-graduate students who are graduates of law schools in China are precluded from taking this course for credit.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Students must have obtained a B4 and above in CL or CL2 (AO Level) or B4 and above in Higher Chinese (HCL or CL1)", + "corequisite": "" + }, + { + "moduleCode": "LL6010", + "title": "Civil Law Tradition", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6010A", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6010AV", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6010A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6011", + "title": "Civil Justice & Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "corequisite": "" + }, + { + "moduleCode": "LL6011V", + "title": "Civil Justice & Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4011/LL5011/LL6011 Civil Justice & Process;\nLL4413/LL5413/LL6413 Civil Justice and Procedure.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nFor Exchange/Graduate students: Students must have studied all the core subjects in a Common Law curriculum.\nNot open to students who are, or have been, legal practitioners or who have worked professionally in any legal field.", + "corequisite": "" + }, + { + "moduleCode": "LL6012V", + "title": "Comparative Constitutional Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6012", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6013V", + "title": "Comparative Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6013", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6014", + "title": "Construction Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6014V", + "title": "Construction Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6014", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6016A", + "title": "Topics in Int’l Criminal Law (A): Aggression", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6017", + "title": "Contract and Commercial Law in Civil-Law Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Any student pursuing or having obtained a basic law degree in a civil law jurisdiction is precluded from taking this course. This course is for common law students who\nhave not studied the civil law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. \n\nContract Law (or the equivalent common law contract course for exchange and graduate students)", + "corequisite": "" + }, + { + "moduleCode": "LL6018", + "title": "Corporate Tax: Profits & Distributions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6018V", + "title": "Corporate Tax: Profits & Distributions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6018", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6019", + "title": "Credit & Security", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6019V", + "title": "Credit & Security", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6021V", + "title": "Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6022V", + "title": "Globalization And International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6022", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6024", + "title": "Indonesian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6024V", + "title": "Indonesian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6024", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6025", + "title": "Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL6025V", + "title": "Rights", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6025", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6026V", + "title": "Infocoms Law: Competition & Convergence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6026", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6027", + "title": "International & Comparative Law Of Sale", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6029", + "title": "International Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6029AV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6029BV", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6029V", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6029", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6030", + "title": "International Commercial Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6030V", + "title": "International Commercial Litigation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6030", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6031", + "title": "International Environmental Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6031V", + "title": "International Environmental Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6031", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6032", + "title": "International Investment Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6032V", + "title": "International Investment Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6032", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6033", + "title": "International Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6033V", + "title": "International Legal Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6033", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6034", + "title": "International Regulation Of Shipping", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6034V", + "title": "International Regulation of Shipping", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6034.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent. Students who have completed a course in Law of the Sea or Ocean Law & Policy may have a slight advantage", + "corequisite": "" + }, + { + "moduleCode": "LL6035", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4035V/LL5035V/LL6035V / LC5035 / LC5035V / LC5035A / LC5035B Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6035V", + "title": "Taxation Issues in Cross-Border Transactions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "(1) LL4035/LL5035/LL6035/LC5035/LC5035V/LC5035A/ LC5035B Taxation Issues in Cross-Border Transactions; (2) LL4342/LL5342/LL6342; LL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nNote: Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6037", + "title": "Sociology of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6037V", + "title": "Sociology of Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4037", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law Students: NUS Compulsory Core Law Curriculum or its equivalent; For Non-Law Students: Open to students from Arts and Social Sciences with at least 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL6042V", + "title": "Law and Religion", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6042.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For Law - NUS Compulsory Core Curriculum or its equivalent.\nFor Non-Law – At least 3rd year students from Arts and Social Sciences.", + "corequisite": "" + }, + { + "moduleCode": "LL6043", + "title": "Law Of Marine Insurance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6043V", + "title": "Law Of Marine Insurance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6043.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6044", + "title": "Mediation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6044V", + "title": "Mediation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Not open to students who have successfully completed Mediation.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6045", + "title": "Negotiation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6045V", + "title": "Negotiation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Note: Not open to students who have successfully completed Negotiation Workshop or its equivalent elsewhere. Not open to incoming exchange students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6049", + "title": "Principles Of Conflict Of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6049V", + "title": "Principles Of Conflict Of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6049.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6050", + "title": "Public International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6050V", + "title": "Public International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6050.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6051", + "title": "Principles Of Restitution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Remedies in Contract, Tort & Restitution (LL4651D), (LLB4078/LMB4078/LDB4078/LSB4078). ♣ Subject not offered to Graduate Diploma in Singapore Law students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Property II (LL3601A) or an equivalent course on Equity & Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LL6054", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6054V", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6055", + "title": "Securities Regulation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4055V/LL5055V/LL6055V Securities Regulation;\nStudents doing or have done any of the following module(s) are precluded: (1) International Corporate Finance [8MC -LL4409/LL5409/LLD5409/LL6409; 4MC - LL4238/LL5238/LL6238; 5MC - LL4238V/LL5238V/LL6238V]; (2) Corporate Finance Law & Practice in Singapore - 4MC - LL4182/LL5182/LL6182; 5MC - LL4182V/LL5182V/LL6182V; (3) 8MC - Securities and Capital Markets Regulation - LL4412/LL5412/LL6412.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL6056A", + "title": "Tax Planning And Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6056AV", + "title": "Tax Planning And Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL6056B", + "title": "Tax Planning And Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6056BV", + "title": "Tax Planning And Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law (LC2008) or its equivalent in a developed common law jurisdiction", + "corequisite": "" + }, + { + "moduleCode": "LL6057V", + "title": "Theoretical Foundations Of Criminal Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6057.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Module is also open to non-law students from FASS Philosophy or Political Science dept with at least 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "LL6059V", + "title": "United Nations Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6059.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6060", + "title": "World Trade Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6060B", + "title": "World Trade Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4199A/LL4199B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6061", + "title": "Inquiry", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "For Non-Law Students: Open to students from University Scholars Programme who have read 80MCs or more." + }, + { + "moduleCode": "LL6061V", + "title": "Inquiry", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6061.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "For Non-Law Students: Open to students from University Scholars Programme who have read 80MCs or more." + }, + { + "moduleCode": "LL6062", + "title": "Legal Reasoning & Legal Theory", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\n\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL6062V", + "title": "Legal Reasoning & Legal Theory", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6062.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum\n\nFor non‐law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL6063", + "title": "Business & Finance For Lawyers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6063V", + "title": "Business & Finance For Lawyers", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who are taking or have taken LL6063.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) Company Law or its equivalent in a common law jurisdiction (may be taken concurrently)", + "corequisite": "" + }, + { + "moduleCode": "LL6064", + "title": "Competition Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Competition Law courses taught in European, American and Singapore law schools.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6064V", + "title": "Competition Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Competition Law courses taught in European, American and Singapore law schools.\nStudents who are taking or have taken LL6064.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6065", + "title": "Comparative Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6067", + "title": "Comparative Criminal Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6069", + "title": "European Union Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6069V", + "title": "European Union Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6070", + "title": "Foundations of IP Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6070V", + "title": "Foundations Of Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "The Law of Intellectual Property. Students who are taking or have taken LL6070.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6071", + "title": "International Patent Law, Policy and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "May vary from year to year depending on the modules offered by visitors to NUS Law in any given year.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) A foundation or basic knowledge in IP law would be useful.", + "corequisite": "" + }, + { + "moduleCode": "LL6071V", + "title": "International Patent Law, Policy and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "May vary from year to year depending on the modules offered by visitors to NUS Law in any given year.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) A foundation or basic knowledge in IP law would be useful.", + "corequisite": "" + }, + { + "moduleCode": "LL6072B", + "title": "Topics in IP Law B: IP Valuation:Law & Prc", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6073", + "title": "International Criminal Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6073V", + "title": "International Criminal Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6073.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6074", + "title": "Mergers & Acquisitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6074V", + "title": "Mergers & Acquisitions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Must not have taken a substantially similar course. Not open to students who have taken/taking LL4223/LL5223/LL6223 Cross Border Mergers. Not open to students who have taken Mergers and Acquisition (M&A).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6075", + "title": "IP and Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6075V", + "title": "IP and Competition Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6075.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6076", + "title": "IT Law I", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6076V", + "title": "IT Law I", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6076.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6077V", + "title": "IT Law II", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6077.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6078", + "title": "Law & Practice of Investment Treaty Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6079", + "title": "State and Company in Legal-Historical Perspective", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6081", + "title": "Comparative Advocacy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6082", + "title": "Law & Social Movements", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6085", + "title": "International Trusts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6088", + "title": "Chinese Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6088V", + "title": "Chinese Contract Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Exchange students from law schools in China and postgraduate students who are graduates of law schools in China are precluded from taking this course for credit.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Note: This course is delivered bi-lingually, yet predominantly in English. It is a plus but not a must that students have learned Chinese Legal Tradition and Legal Chinese (LL4009), or have\nobtained a B4 and above in CL or CL2 ('AO' Level) or B4 and above in Higher Chinese (HCL or CL1).", + "corequisite": "" + }, + { + "moduleCode": "LL6089", + "title": "Chinese Corporate and Securities Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6089V", + "title": "Chinese Corporate & Securities Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL4089.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6093", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6093V", + "title": "Chinese Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6094", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6094AV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6094BV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6094CV", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6094V", + "title": "Law & Practice - The Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have been in practice as qualified lawyers in the local or other jurisdictions are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nNUS Legal Skills Programme or equivalent, in particular, Legal Analysis, Research and Communication or its equivalent. Singapore Legal System or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6096", + "title": "International Trademark Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6096V", + "title": "International Trademark Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6096.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6097", + "title": "Islamic Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6097V", + "title": "Islamic Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6097.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6099", + "title": "Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6099V", + "title": "Maritime Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6099.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6100", + "title": "Arbitration and Dispute Resolution in China", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4100V/LL5100V/LL6100V Arbitration and Dispute Resolution in China", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6100V", + "title": "Arbitration and Dispute Resolution in China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL4100/LL5100/LL6100 Arbitration and Dispute Resolution in China", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6102", + "title": "Advanced Torts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6102V", + "title": "Advanced Torts", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6104", + "title": "Jurisprudence", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\n\nFor non-law students: 3rd & 4th Year students from Arts & Social Sciences Faculty", + "corequisite": "" + }, + { + "moduleCode": "LL6104V", + "title": "Jurisprudence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6104.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6107V", + "title": "Partnership and Alternative Business Vehicles", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6109", + "title": "International Law & Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6109V", + "title": "International Law & Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6109.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6111V", + "title": "International Copyright Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6111.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6122", + "title": "The Contemporary Indian Legal System", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6122V", + "title": "The Contemporary Indian Legal System", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6122.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6123", + "title": "International Insolvency Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6125", + "title": "Law And Development In China", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6125V", + "title": "Law And Development In China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6125.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6128", + "title": "Chinese Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6129", + "title": "Indian Business Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Currently, the course is precluded for Exchange students from law schools in India and postgraduate\nstudents who are graduates of law schools in India as well as students who have taken LL4104\nForeign Investment Law of India. It is proposed that these preclusions be removed and that the course will\nremain open for all interested students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent (b) Company Law (LC2008) or its\nequivalent in a common law jurisdiction (may be taken concurrently)", + "corequisite": "" + }, + { + "moduleCode": "LL6129V", + "title": "Indian Business Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6129.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6131", + "title": "Law, Governance & Development in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6131V", + "title": "Law, Governance & Development in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6131.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6133", + "title": "Human Rights in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6133V", + "title": "Human Rights in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6133.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6134", + "title": "Crossing Borders: Law, Migration & Citizenship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\nFor non‐law students: 3rd & 4th Year students from Arts & Social Sciences Faculty", + "corequisite": "" + }, + { + "moduleCode": "LL6134V", + "title": "Crossing Borders: Law, Migration & Citizenship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6134", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6135", + "title": "Patent Law & Practice: Perspectives from the U.S", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4071/LL5071/LL6071; LL4071V/LL5071V/LL6017V International Patent Law, Policy and Practice; \n(2) LL4405B/LL5405B/LL6405B/LC5405B Law of Intellectual Property (B); \n(3) LL4007/LL5007/LL6007; LL4007V/LL5007V/LL6007V Biotechnology Law;\n(4) LL4076/LL5076/LL6076; LL4076V/LL5076V/LL6076V IT Law I\n(5) LL4135V/LL5135V/LL6135V Patent Law and Practice: Perspectives from the U.S.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6138", + "title": "International & Comparative Law of Sale in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6138V", + "title": "Int'l&Comp Law of Sale in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6138", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6140", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4140V/LL5140V/LL6140V/LLD5140V Law of the Sea: Theory and Practice;\nLL4140V/LL5140V/LL6140V/LLD5140V Ocean Law & Policy in Asia; LL4046V/LL5046V/LL6046V Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6140V", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4140/LL5140/LL6140/LLD5140 Law of the Sea: Theory and Practice;\nLL4140/LL5140/LL6140/LLD5140 Ocean Law & Policy in Asia; LL4046/LL5046/LL6046 Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6146", + "title": "Law & Society", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6146V", + "title": "Law & Society", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6146", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6148", + "title": "Secured Transactions Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Credit & Security (LL4019/LL5019/LL6019; LL4019V/LL5019V/LL6019V)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6150", + "title": "International Investment Law and Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4150V/LL5150V/LL6150V International Investment Law and Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6150V", + "title": "International Investment Law and Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4150/LL5150/LL6150 International Investment Law and Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6153", + "title": "International Police Enforcement Cooperation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6155", + "title": "Topics in Law & Economics", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nTertiary-level module in Microeconomics.", + "corequisite": "" + }, + { + "moduleCode": "LL6158", + "title": "Climate Change Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4158V/LL5158V/LL6158V Climate Change Law;\nLL4221/LL5221/LL6221; LL4221V/LL5221V/LL6221V Climate Change Law & Policy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6158V", + "title": "Climate Change Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4158/LL5158/LL6158 Climate Change Law;\nLL4221/LL5221/LL6221; LL4221V/LL5221V/LL6221V Climate Change Law & Policy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6159", + "title": "The Economic Analysis of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have done Economic Analysis of Law [Module code: L56.3020] under the NYU@NUS Summer Session are precluded. LL4159V/LL5159V/LL6159V The Economic Analysis of Law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6159V", + "title": "The Economic Analysis of Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have done Economic Analysis of Law [Module code: L56.3020] under the NYU@NUS Summer Session are precluded. LL4159/LL5159/LL6159 The Economic Analysis of Law.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6161", + "title": "Intelligence Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6161V", + "title": "Intelligence Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6161", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6162", + "title": "Singapore Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Previously completed a course in Company Law.", + "corequisite": "" + }, + { + "moduleCode": "LL6162V", + "title": "Singapore Corporate Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Previously completed a course in Company Law.", + "corequisite": "" + }, + { + "moduleCode": "LL6164", + "title": "International Projects Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6164V", + "title": "International Projects Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6164.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6170", + "title": "Comparative Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6171", + "title": "ASEAN Environmental Law, Policy and Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6171V", + "title": "ASEAN Environmental Law, Policy & Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6171.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6172", + "title": "Japanese Corporate Law & Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6173", + "title": "Comparative Corporate Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6173V", + "title": "Comparative Corporate Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6173.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6175", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6175V", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6175.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6177", + "title": "Entertainment Law: Pop Iconography & Celebrity", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6177V", + "title": "Entertainment Law: Pop Iconography & Celebrity", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LL6177.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6178", + "title": "Law and Practice of Investment Treaties", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Must not have taken a substantially similar course. \nNot open to students who have taken/taking (1) LL4032/LL5032/LL6032; LL4032V/LL5032V/LL6032V International Investment Law; (2) LL4078/LL5078/LL6078; LL4078V/LL5078V/LL6078V Law & Practice of Investment Treaty Arbitration.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6178V", + "title": "Law and Practice of Investment Treaties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Must not have taken a substantially similar course. \nNot open to students who have taken/taking (1) LL4032/LL5032/LL6032; LL4032V/LL5032V/LL6032V International Investment Law; (2) LL4078/LL5078/LL6078; LL4078V/LL5078V/LL6078V Law & Practice of Investment Treaty Arbitration.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6179", + "title": "International Alternative Dispute Resolution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6180", + "title": "Choice of Law & Jurisdiction in Int’l Commercial Contracts in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6185", + "title": "Government Regulations: Law, Policy & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6185V", + "title": "Government Regulations: Law, Policy & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6187", + "title": "Philosophical Foundations of Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6188", + "title": "Corporate Law and Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6189", + "title": "Corporate Social Responsibility", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4189V/LL5189V/LL6189V Corporate Social Responsibility", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6189V", + "title": "Corporate Social Responsibility", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4189/LL5189/LL6189 Corporate Social Responsibility", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6190", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nSingapore Legal System (LC1005); Public law (LC2007).", + "corequisite": "" + }, + { + "moduleCode": "LL6190V", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6190.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6191", + "title": "Wealth Management Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent (b) Principles of Conflict of Laws [LL4049] is recommended.", + "corequisite": "" + }, + { + "moduleCode": "LL6192", + "title": "Private International Law of IP", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6193", + "title": "Negotiating & Drafting Int'l Commercial Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6193V", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6193.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6194", + "title": "Partnership and LLP Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6195V", + "title": "International Economic Law & Relations", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6195.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6197", + "title": "Comparative State and Religion in Southeast Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum or its equivalent\n\nFor non‐law students: 3rd & 4th Year students from Arts & Social Sciences Faculty who has completed PS1101E Introduction to Politics", + "corequisite": "" + }, + { + "moduleCode": "LL6197V", + "title": "Comparative State and Religion in Southeast Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6197.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6202", + "title": "ASEAN Economic Community Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6202V", + "title": "ASEAN Economic Community Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6202.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LL6203", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6203A", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6203B", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6203C", + "title": "International Moots and Other Competitions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6204", + "title": "Islamic Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6205", + "title": "Maritime Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "LL4002 Admiralty Law and Practice (Co-requisite)" + }, + { + "moduleCode": "LL6205V", + "title": "Maritime Conflict of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6205.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6208", + "title": "Advanced Criminal Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6208V", + "title": "Advanced Criminal Legal Process", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6208.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6209", + "title": "Legal Argument & Narrative", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6209V", + "title": "Legal Argument & Narrative", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LL6209.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6210", + "title": "Intellectual Property and International Trade", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6210V", + "title": "Intellectual Property And International Trade", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6210.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6211", + "title": "International Public Monetary and Payment Systems Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6213", + "title": "Transnational Law in Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS compulsory core curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6214", + "title": "International and Comparative Oil and Gas Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6216", + "title": "Cyber Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6217", + "title": "Comparative & International Anti-Corruption Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6218V", + "title": "Asian Legal Studies Colloquium", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6218.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6219", + "title": "The Trial of Jesus in Western Legal Thought", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6220", + "title": "International Business Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6221", + "title": "Climate Change Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6222", + "title": "The Law & Politics of International Courts & Tribunals", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6223", + "title": "Cross Border Mergers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. Must have read Tax Module or Securities Regulation", + "corequisite": "" + }, + { + "moduleCode": "LL6224", + "title": "Cybercrime & Information Security Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6225", + "title": "Topics in the Law and Economics of Competition Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6226", + "title": "Multimodal Transport Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6226V", + "title": "Multimodal Transport Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6226.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6227", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6228", + "title": "The Use of Force in International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6228V", + "title": "The Use of Force in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6228.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6229", + "title": "Corporate Governance in the US and UK", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4065/LL5065/LL6065 Comparative Corporate \nGovernance & LL4162/LL5162/LL6162 Corporate \nGovernance in Singapore", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6231", + "title": "Transition and the Rule of Law in Myanmar", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6233", + "title": "European Company Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6233V", + "title": "European Company Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6233.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6234", + "title": "Property Theory", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For law students: NUS Compulsory Core Curriculum For non-law students: Open to Philosophy, Political Science, and USP students.", + "corequisite": "" + }, + { + "moduleCode": "LL6234V", + "title": "Property Theory", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6234.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6235", + "title": "International Contract Law: Principles and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4235V/LL5235V/LL6235V International Contract Law: Principles and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6235V", + "title": "International Contract Law: Principles and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4235/LL5235/LL6235 International Contract Law: Principles and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6237V", + "title": "Law, Institutions, and Business in Greater China", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6238", + "title": "International Corporate Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students should not have done a substantially similar subject. Students doing or have done any of the following module(s) are precluded: \n1) Securities Regulation [LL4055/LL5055/LL6055]; \n(2) Corporate Law & Finance [LL4188/LL5188/LLD5188/LL6188]; \n(3) Corporate Finance Law & Practice in Singapore [LL4182/LL5182/LLD5182/LL6182]; \n(4) International Corporate Finance [LL4409/LL5409/LL6409]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent; Law of Contract [LC1003 or equivalent]; \nCompany Law [LC2008/LC5008/LCD5008/LC6008]", + "corequisite": "" + }, + { + "moduleCode": "LL6238V", + "title": "International Corporate Finance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL6238.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6239V", + "title": "Law & Politics in South Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent For non law students from FASS (with at least 80MCs)", + "corequisite": "Open only to upper year students from FASS and allied departments (with at least 80 MCs)." + }, + { + "moduleCode": "LL6241", + "title": "Financial Stability and the Regulation of Banks", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6242V", + "title": "Financial Regulation and Central Banking", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have read the following module are precluded:\n(1) Financial Stability and the Regulation of Banks [LL4241/LL5241/LL6241;LL4241V/LL5241V/LL6241V]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6243", + "title": "Law, Economics, Development, and Geography", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4243V/LL5243V/LL6243V Law, Economics, Development, and Geography", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\n\nFor Non-Law students: \nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "LL6243V", + "title": "Law, Economics, Development, and Geography", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4243/LL5243/LL6243 Law, Economics, Development, and Geography", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\n\nFor Non-Law students: \nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "LL6244V", + "title": "Criminal Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students taking this module will be precluded from LL4208/LL5208/LL6208 & LL4208V/LL5208V/LL6208V ACLP, and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6245V", + "title": "Regulatory Foundations of Public Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4245/LL5245/LL6245 Regulatory Foundations of Public Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent. A foundational course on constitutional and administrative law (from either a common law or some other jurisdiction).\n\nFor Non Law students from FASS (Political Science - with at least 80 MCs).", + "corequisite": "" + }, + { + "moduleCode": "LL6246", + "title": "International Carriage of Passengers by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6247V", + "title": "International Economic Law & Globalisation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6249", + "title": "Shareholders' Rights & Remedies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6250", + "title": "Principles of Equity Financing", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6251", + "title": "International Humanitarian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6251V", + "title": "International Humanitarian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6252", + "title": "The EU and its Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6253V", + "title": "The Law of Treaties", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6254V", + "title": "Developing States in a Changing World Order", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4254/LL5254/LL6254 Developing States in a Changing World Order", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6255V", + "title": "Trade Remedy Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6256", + "title": "Comparative Constitutional Government", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6257", + "title": "Law & Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6258V", + "title": "Personal Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have read: LL4047/LL5047/LL6047/ LL4047V/LL5047V/LL6047V Personal Property I – Tangible; LL4168/LL5168/LL6168/ LL4168V/LL5168V/LL6168V Personal Property Law II – Intangible & LL4411/LL5411/LL6411 Personal Property Law (8MC) are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6259AV", + "title": "Alternative Investments", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4314/LL5314/LL6314; LL4314V/LL5314V/LL6314 Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6259V", + "title": "Alternative Investments", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4314/LL5314/LL6314; LL4314V/LL5314V/LL6314 Private Equity and Venture Capital: Law and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6260V", + "title": "Chinese Commercial Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students should not have had past practice experience in China and should not have taken a substantially similar course.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6261V", + "title": "Employment Law & Migrant Workers Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) Only Singapore Citizens for externships at the Ministry of\nManpower beginning in July; (b) NUS Compulsory Core Law\nCurriculum, NUS Legal Skills Programme or equivalent; (c)\nCrossing Borders: Law, Migration & Citizenship\n[LL4134/LL5134/LL6134; LL4134V/LL5134V/LL6134V] (may be\ntaken concurrently).", + "corequisite": "Crossing Borders: Law, Migration and Citizenship (LL4134; LL5134; LL6134 / LL4134V; LL5134; LL6134)" + }, + { + "moduleCode": "LL6263V", + "title": "Intellectual Property Rights and Competition Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IP and Competition Law (LL4075V/LL5075V/LL6075V;\nLL4075/LL5075/LL6075)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "Law of Intellectual Property A (LL4405A/LL5405A/LL6405A/LC5405A) Law of Intellectual Property B (LL4405B/LL5405B/LL6405B/LC5405B) Foundations of IP Law (LL4070V/LL5070V/LL6070V/LC5070V; LL4070/LL5070/LL6070/LC5070]" + }, + { + "moduleCode": "LL6267V", + "title": "Architecting Deals: A Framework of Private Orderings", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6268", + "title": "Remedies", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6269", + "title": "Privacy and Intellectual Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Privacy Law: Critical & Comparative Perspectives\nLL4169/LL5169/LL6169\nLL4169V / LL5169V / LL6169V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6270", + "title": "International Human Rights of Women", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6271", + "title": "Law and Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6272", + "title": "International Financial System: Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Financial Stability & The Regulation of Banks\nLL4241; LL5241; LL6241 / LL4241V; LL5241V; LL6241V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6273", + "title": "European & International Competition Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6274", + "title": "Comparative GST Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6275", + "title": "International Institutional Law:", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6276", + "title": "Advanced Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Philosophical Foundations of Contract Law\nLL4187/LL5187/LL6187\nLL4187V/LL5187V/LL6187V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent Contract Law", + "corequisite": "" + }, + { + "moduleCode": "LL6277V", + "title": "Medical Law and Ethics", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who have read LL4400/LL5400/LL6400 BIOMEDICAL LAW & ETHICS are precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6278V", + "title": "Trade and Investment Law in the Asia-Pacific", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "Public International Law: LL4050; LL5050; LL6050; LC5050 / LL4050V; LL5050V; LL6050V; LC5050V" + }, + { + "moduleCode": "LL6279V", + "title": "Access to Justice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6280V", + "title": "Crime and Companies", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6281V", + "title": "Civil Procedure", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4011; LL5011; LL6011 Civil Justice and Process\nLL4011V; LL5011V; LL6011V Civil Justice and Process", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6282V", + "title": "Resolution of Transnational Commercial Disputes", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6283V", + "title": "Artificial Intelligence, Information Science & Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent\nInformation Technology Law I [LL4076/LL5076/LL6076;\nLL4076V/LL5076V/LL6076V] or Information Technology Law II\n[LL4077/LL5077/LL6077; LL4077V/LL5077V/LL6077V]\n\nGCE “A” Level Mathematics (at least), with basic understanding of\nprobability theory and linear algebra \nProgramming skills in e.g. MatLab/Octave/Java/Python/R is a bonus.", + "corequisite": "" + }, + { + "moduleCode": "LL6284", + "title": "Confucianism and Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6285V", + "title": "International Dispute Settlement", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4285/LL5285/LL6285/LC5285 International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6286V", + "title": "Transnational Terrorism and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6287V", + "title": "ASEAN Law and Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6288V", + "title": "Business, International Commerce and the European Union", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4288/LL5288/LL6288 Business, International Commerce and the European Union", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6289V", + "title": "The Evolution of International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4289/LL5289/LL6289 The Evolution of International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. At least one prior course in international law or international arbitration, or taken concurrently", + "corequisite": "" + }, + { + "moduleCode": "LL6290V", + "title": "Legal Research: Method & Design", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4290/LL5290/LL6290 Legal Research: Method & Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6291", + "title": "Legal Pluralism and Global Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4291V/LL5291V/LL6291V Legal Pluralism and Global Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nOne prior course in either (i) law and the social sciences (anthropology, sociology, economics), or (ii) LL4050V/LL5050V/6050V/LC5050V; LL4050/LL5050/LL6050/LC5050 Public International Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6291V", + "title": "Legal Pluralism and Global Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4291/LL5291/LL6291 Legal Pluralism and Global Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nOne prior course in either (i) law and the social sciences (anthropology, sociology, economics), or (ii) LL4050V/LL5050V/6050V/LC5050V; LL4050/LL5050/LL6050/LC5050 Public International Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6292V", + "title": "State Responsibility: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4292/LL5292/LL6292 State Responsibility: Theory and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6295", + "title": "Conflict of Laws in Int’l Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4295V/LL5295V/LL6295V Conflict of Laws in Int’l Commercial Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6296", + "title": "Imitation, Innovation and Intellectual Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4296V/LL5296V/LL6296V Imitation, Innovation and Intellectual Property", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nStudents should ideally have taken a module in intellectual property or concurrently enrolled in one.", + "corequisite": "" + }, + { + "moduleCode": "LL6297", + "title": "Practice of Corporate Finance and the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4297V/LL5297V/LL6297V Practice of Corporate Finance and the Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6298", + "title": "International Finance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4298V/LL5298V/LL6298V International Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6299", + "title": "Advanced Issues in the Law & Practice of Int’l Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4299V/LL5299V/LL6299V Advanced Issues in the Law & Practice of Int’l Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6300", + "title": "Copyright in the Internet Age", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4076/LL5076/LL6076; LL4076V/LL5076V/LL5076V IT Law I\n(2) LL4300V/LL5300V/LL6300V Copyright in the Internet Age", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6301", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4301V/LL5301V/LL6301V Topics in Constitutional Law: Socio-Economic Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6302", + "title": "Int'l Regulation of Finance & Investment Markets", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4302V/LL5302V/LL6302V Int’l Regulation of Finance & Investment Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6302V", + "title": "Int'l Regulation of Finance & Investment Markets", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4302/LL5302/LL6302 Int’l Regulation of Finance & Investment Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6303", + "title": "Law and Literature", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4303V/LL5303V/LL6303V Law and Literature", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6304", + "title": "Global Comparative Constitutional Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4012/LL5012/LL6012; LL4012V/LL5012V/LL6012V Comparative Constitutional Law\n(2) LL4304V/LL5304V/LL6304V Global Comparative Constitutional Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6305", + "title": "IP and Human Rights", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4305V/LL5305V/LL6305V IP and Human Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nStudents should ideally have taken a module in intellectual\nproperty or concurrently enrolled in one.", + "corequisite": "" + }, + { + "moduleCode": "LL6306", + "title": "Chinese Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4306V/LL5306V/LL6306V Banking Law and Financial Regulation in China.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6306V", + "title": "Chinese Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4306/LL5306/LL6306 Banking Law and Financial Regulation in China OR Chinese Banking Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6307", + "title": "EU Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4307V/LL5307V/LL6307V EU Maritime Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6308V", + "title": "Behavioural Economics, Law & Regulation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4308/LL5308/LL6308 Behavioural Economics, Law & Regulation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6309", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4309V/LL5309V/LL6309V Strategies for Asian Disputes; Strategies for Asian Disputes - A Comparative Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6309V", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4309/LL5309/LL6309 Strategies for Asian Disputes; Strategies for Asian Disputes - A Comparative Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6310V", + "title": "International Organisations in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4310/LL5310/LL6310 International Organisations in International Law;\nLL4275/LL5275/LL6275 International Institutional Law;\nLL4275V/LL5275V/LL6275V International Institutional Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6311", + "title": "Islamic Law and the Family", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4311V/LL5311V/LL6311V Islamic Law and the Family", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6312V", + "title": "The Law of Global Governance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4312/LL5312/LL6312 The Law of Global Governance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nBackground in Public International Law and/or Administrative\nLaw is an asset.", + "corequisite": "" + }, + { + "moduleCode": "LL6313V", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4313/LL5313/LL6313 Mediation/Conciliation of Inter- & Investor-State Disputes", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. One prior course in international arbitration or public international law, or taken concurrently.", + "corequisite": "" + }, + { + "moduleCode": "LL6314V", + "title": "Private Equity and Venture Capital: Law and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "(1) LL4314/LL5314/LL6314 Private Equity and Venture Capital: Law and Practice; (2) LL4259V/LL5259V/LL6259V; LL4259/LL5259/LL6259 Alternative Investments", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6316V", + "title": "Restitution of Unjust Enrichment", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4316/LL5316/LL6316 Restitution of Unjust Enrichment; LL4051/LL5051/LL6051; LL4051V/LL5051V/LL6051V Principles of Restitution", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6317V", + "title": "International Arbitration in Asian Centres", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4317/LL5317/LL6317 International Arbitration in Asian Centres", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "LL4029/LL5029/LC5262/LL6029; LL4029V/LL5029V/LC5262V/ LL6029V International Commercial Arbitration; OR LL4285/LL5285/LC5285/LL6285; LL4285V/LL5285V/LC5285V/ LL6285V International Dispute Settlement ; OR their equivalent at another University" + }, + { + "moduleCode": "LL6318V", + "title": "Public Health Law and Regulation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4318/LL5318/LL6318 Public Health Law and Regulation; \nA similar course in another faculty or law school anywhere else.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6319V", + "title": "Current Problems in International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4319/LL5319/LL6319 Current Problems in International Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "Public International Law is recommended." + }, + { + "moduleCode": "LL6320", + "title": "International Space Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4320V/LL5320V/LL6320V International Space Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6320V", + "title": "International Space Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4320/LL5320/LL6320 International Space Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6321", + "title": "Deals: The Economic Structure of Business Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4321V/LL5321V/LL6312V Deals: The Economic Structure of Business Transactions \nLL4267/LL5267/LL6267; LL4267V/LL5267V/LL6267V Architecting Deals: A Framework of Private Orderings", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6322", + "title": "Trade Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4322V/LL5322V/LL6322V Trade Finance Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Students should have covered the core private law subjects of Contract, Tort and Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LL6322V", + "title": "Trade Finance Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6323", + "title": "Law of Agency", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4323V/LL5323V/LL6323V Law of Agency", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6324", + "title": "Comparative Trade Mark Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4324V/LL5324V/LL6324V Comparative Trade Mark Law; \nLL4096/LL5096/LL6096; LL4096V/LL5096V/LL6096V International Trademark Law and Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6325", + "title": "The Int'l Litigation & Procedure of State Disputes", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4325V/LL5325V/LL6325V - The Int’l Litigation & Procedure of State Disputes \n\nLL4285V/LL5285V/LC5285V/LL6285V; \nLL4285/LL5285/LC5285/LL6285 - International Dispute Settlement", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6326", + "title": "Administrative Justice: Perspectives from the U.S.", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4326V/LL5326V/LL6326V Administrative Justice: Perspectives from the U.S", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6327V", + "title": "Mergers and Acquisitions: A Practitioner’s Perspective", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "(1) LL4327/LL5327/LL6327 Mergers and Acquisitions: A Practitioner’s Perspective; \n(2) LL4074/LL5074/LL6074; LL4074V/LL5074V/LL6074V Mergers & Acquisitions (M&A); \n(3) LL4223/LL5223/LL6223; LL4233V/LL5223V/LL6223V Cross Border Mergers", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nContracts, Property, Equity & Trusts and Company Law. \nAn ability to engage in discussion in English.", + "corequisite": "" + }, + { + "moduleCode": "LL6328", + "title": "Sports Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4328V/LL5328V/LL6328V Sports Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6329", + "title": "Cross-Border Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4329V/LL5329V/LL6329V Cross-Border Litigation;\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation; \nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6330", + "title": "Advanced Trusts Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4330V/LL5330V/LL6330V Advanced Trusts Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6331", + "title": "The Rule of Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4331V/LL5331V/LL6331V The Rule of Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6332", + "title": "Fair Use in Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4332V/LL5332V/LL6332V Fair Use in Theory and Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6333", + "title": "International Criminal Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "If there is any other substantive international criminal law course offered by colleagues as there will be substantive overlap.\n\nLL4333V/LL5333V/LL6333V International Criminal Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nNo auditing", + "corequisite": "" + }, + { + "moduleCode": "LL6333V", + "title": "International Criminal Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "If there is any other substantive international criminal law course offered by colleagues as there will be substantive overlap.\n\nLL4333/LL5333/LL6333 International Criminal Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nNo auditing", + "corequisite": "" + }, + { + "moduleCode": "LL6334", + "title": "Law and Society in Southeast Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4334V/LL5334V/LL6334V Law and Society in Southeast Asia (5MCs)\nSC4883 Selected Topics in Law and Justice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6335V", + "title": "Multinational Enterprises and International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4335/LL5335/LL6335 Multinational Enterprises and International Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6338V", + "title": "Advanced Practicum in International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4338/LL5338/LL6338 Advanced Practicum in International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. \nLL4029/LL5029/LC5262/LL6029; \nLL4029V/LL5029V/LC5262V/LL6029V International \nCommercial Arbitration; OR \nLL4285/LL5285/LC5285/LL6285; \nLL4285V/LL5285V/LC5285V/LL6285V International \nDispute Settlement; OR their equivalent at another university", + "corequisite": "" + }, + { + "moduleCode": "LL6339", + "title": "Comparative Evidence in International Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4339V/LL5339V/LL6339V Comparative Evidence in International Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6340", + "title": "International Refugee Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4340V/LL5340V/LL6340V International Refugee Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL6340V", + "title": "International Refugee Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4340/LL5340/LL6340 International Refugee Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL6341", + "title": "The Law and Politics of Forced Migration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4341V/LL5341V/LL6341V The Law and Politics of Forced Migration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL6341V", + "title": "The Law and Politics of Forced Migration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4341/LL5341/LL6341 The Law and Politics of Forced Migration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLL4050/LL5050/LL6050/LC5050; L4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a co-requisite)", + "corequisite": "LL4050/LL5050/LL6050/LC5050; LL4050V / LL5050V / LL6050V / LC5050V Public International Law (or as a pre-requisite)" + }, + { + "moduleCode": "LL6342", + "title": "Taxation of Cross-Border Commercial Transactions", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4035/LL5035/LL6035/LC5035/LC5035A/LC5035B/; LL4035V/LL5035V/LL6035V Taxation Issues in Cross-Border Transactions;\n\nLL4342V/LL5342V/LL6342V Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6342V", + "title": "Taxation of Cross-Border Commercial Transactions", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4035/LL5035/LL6035/LC5035/LC5035A/LC5035B/; LL4035V/LL5035V/LL6035V\nTaxation Issues in Cross-Border Transactions;\n\nLL4342/LL5342/LL6342 Taxation of Cross-Border Commercial Transactions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6343", + "title": "International Regulation of the Global Commons", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4343V/LL5343V/LL6343V International Regulation of the Global Commons", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6343V", + "title": "International Regulation of the Global Commons", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4343/LL5343/LL6343 International Regulation of the Global Commons", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6344", + "title": "Public and Private International Copyright Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4344V/LL5344V/LL6344V Public and Private International Copyright Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6344V", + "title": "Public and Private International Copyright Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4344/LL5344/LL6344 Public and Private International Copyright Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6345", + "title": "The Fulfilled Life and the Life of the Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4345V/LL5345V/LL6345V The Fulfilled Life and the Life\nof the Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6345V", + "title": "The Fulfilled Life and the Life of the Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4345/LL5345/LL6345 The Fulfilled Life and the Life of\nthe Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6346", + "title": "Interim Measures in International Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nInternational Commercial Arbitration\nor\nInternational Dispute Settlement", + "corequisite": "International Commercial Arbitration or International Dispute Settlement" + }, + { + "moduleCode": "LL6346V", + "title": "Interim Measures in International Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.\nInternational Commercial Arbitration\nor\nInternational Dispute Settlement", + "corequisite": "International Commercial Arbitration or International Dispute Settlement" + }, + { + "moduleCode": "LL6347", + "title": "Art & Cultural Heritage Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6347V", + "title": "Art & Cultural Heritage Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347 Art & Cultural Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6348", + "title": "Monetary Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4348V/LL5348V/LL6348V Monetary Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLaw of Contract; Principles of Property Law; Equity and Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL6348V", + "title": "Monetary Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4348/LL5348/LL6348 Monetary Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLaw of Contract; Principles of Property Law; Equity and Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL6349", + "title": "Energy Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4349V/LL5349V/LL6349V Energy Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6349V", + "title": "Energy Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4349/LL5349/LL6349 Energy Arbitration", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6350", + "title": "Privacy & Data Protection Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4350V/LL5350V/LL6350V Privacy & Data Protection Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6350V", + "title": "Privacy & Data Protection Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4350/LL5350/LL6350 Privacy & Data Protection Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6351", + "title": "Comparative Corporate Law in East Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4351V/LL5351V/LL6351V Comparative Corporate Law in East Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2008 Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6351V", + "title": "Comparative Corporate Law in East Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4351/LL5351/LL6351 Comparative Corporate Law in East Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2008 Company Law or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6352", + "title": "China and International Economic Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4352V/ LL5352V/LL6352V China and International Economic Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6352V", + "title": "China and International Economic Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4352V/ LL5352V/LL6352V China and International Economic Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6353", + "title": "Character Evidence in the Common Law World", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4353V/LL5353V/LL6353V Character Evidence in the Common Law World", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC3001A Evidence (A) / LC3001B Evidence (B) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6353V", + "title": "Character Evidence in the Common Law World", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4353V/LL5353V/LL6353V Character Evidence in the Common Law World", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC3001A Evidence (A) / LC3001B Evidence (B) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LL6354", + "title": "Comparative Human Rights Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4354V/LL5354V/LL6353V Comparative Human Rights Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nConstitutional Law", + "corequisite": "" + }, + { + "moduleCode": "LL6354V", + "title": "Comparative Human Rights Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4354V/LL5354V/LL6353V Comparative Human Rights Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nConstitutional Law", + "corequisite": "" + }, + { + "moduleCode": "LL6355", + "title": "International Law and Development", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4355V/LL5355V/LL6355V International Law and Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6355V", + "title": "International Law and Development", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4355/LL5355/LL6355 International Law and Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6356", + "title": "International Economic Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4356V / LL5356V / LL6356V International Investment Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Investment Law course OR International Trade Law course OR taken concurrently OR relevant experience in lieu of.", + "corequisite": "" + }, + { + "moduleCode": "LL6356V", + "title": "International Economic Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4356 / LL5356 / LL6356 International Investment Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Investment Law course OR International Trade Law course OR taken concurrently OR relevant experience in lieu of.", + "corequisite": "" + }, + { + "moduleCode": "LL6357", + "title": "Regulation & Political Economy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4357V/LL5357V/LL6357V - Regulation & Political Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6357V", + "title": "Regulation & Political Economy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4357/LL5357/LL6357 Regulation & Political Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6358Z", + "title": "ICC Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "NUS Compulsory Core Law Curriculum or equivalent" + }, + { + "moduleCode": "LL6359Z", + "title": "SIAC and Institutional Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nAt least one prior course in international arbitration.", + "corequisite": "" + }, + { + "moduleCode": "LL6360Z", + "title": "Current Challenges to Investment Arbitration", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6361Z", + "title": "Complex Arbitrations: Multiparty – Multicontract", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6362V", + "title": "Advanced Criminal Litigation - Forensics on Trial", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "FSC4206 Advanced Criminal Litigation - Forensics on Trial", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For LAW students:\nNUS Compulsory Core Law Curriculum or equivalent.\nLC1001% Criminal Law\n\nFor FoS students:\nLSM1306 Forensic Science", + "corequisite": "" + }, + { + "moduleCode": "LL6363", + "title": "Sentencing Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4363V/LL5363V/LL6363V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6363V", + "title": "Sentencing Law and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4363/LL5363/LL6363", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6364", + "title": "Principles of Civil Law: Law of Obligations & Property", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4364V/LL5364V/LL6364V Principles of Civil Law: Law of Obligations & Property\n\nStudents from civil law jurisdictions or students who have a previous law degree from a civil law jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6364V", + "title": "Principles of Civil Law: Law of Obligations & Property", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "LL4364/LL5364/LL6364 Principles of Civil Law: Law of Obligations & Property\n\nStudents from civil law jurisdictions or students who have a previous law degree from a civil law jurisdiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6367", + "title": "Singapore at the UN - A Clinical Externship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4367V/LL5367V/LL6367V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n\nSingapore Law in Context or equivalent course focusing\non the Singapore legal system in the political and social\ncontext of Singapore.\n\nPublic International Law or equivalent courses, including\nUnited Nations Law.\n\nAs the class size is limited, students must undergo a\nselection process which may include an interview.", + "corequisite": "" + }, + { + "moduleCode": "LL6367V", + "title": "Singapore at the UN - A Clinical Externship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4367/LL5367/LL6367", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n\nSingapore Law in Context or equivalent course focusing\non the Singapore legal system in the political and social\ncontext of Singapore.\n\nPublic International Law or equivalent courses, including\nUnited Nations Law.\n\nAs the class size is limited, students must undergo a\nselection process which may include an interview.", + "corequisite": "" + }, + { + "moduleCode": "LL6368", + "title": "Comparative Constitutionalism", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368V/LL5368V/LL6368V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6368V", + "title": "Comparative Constitutionalism", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368/LL5368/LL6368", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6369", + "title": "Constitutionalism in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4369V/LL5369V/LL6369V Constitutionalism in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6369V", + "title": "Constitutionalism in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4369/LL5369/LL6369 Constitutionalism in Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6370", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IFS4101 (for dual-track LLB and BSc (Comp. - IS) students; LL4370V/LL5370V/LL6370V The Law of Cybersecurity, Privacy and Data Compliance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6370V", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "IFS4101 (for dual-track LLB and BSc (Comp. - IS) students; LL4370/LL5370/LL6370 The Law of Cybersecurity, Privacy and Data Compliance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6371", + "title": "Charity Law Today", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4371V/LL5371V/LL63871V Charity Law Today", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6371V", + "title": "Charity Law Today", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4371/LL5371/LL6371 Charity Law Today", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6372", + "title": "International Intellectual Property Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4372V/LL5372V/LL6372V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "[LL4070/LL5070/LL6070; LL4070V/LL5070V/LL6070V] [LL4405A/LL5405A/LL6405A/LC5405A]" + }, + { + "moduleCode": "LL6372V", + "title": "International Intellectual Property Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4372/LL5372/LL6372", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent", + "corequisite": "[LL4070/LL5070/LL6070; LL4070V/LL5070V/LL6070V] [LL4405A/LL5405A/LL6405A/LC5405A]" + }, + { + "moduleCode": "LL6373", + "title": "Advanced Copyright", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4373V/LL5373V/LL6373V Advanced Copyright", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6373V", + "title": "Advanced Copyright", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4373/LL5373/LL6373 Advanced Copyright", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6374", + "title": "Water Rights & Resources: Issues in Law & Development", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4374V/LL5374V/LL6374V Water Rights & Resources: Issues in Law & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6374V", + "title": "Water Rights & Resources: Issues in Law & Development", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4374/LL5374/LL6374 Water Rights & Resources: Issues in Law & Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6375", + "title": "Traditional Chinese Legal Thought", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4375V/LL5375V/LL6375V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6375V", + "title": "Traditional Chinese Legal Thought", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4375/LL5375/LL6375", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6376", + "title": "Regulation & Private Law in Banking & Financial Service", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4376V / LL5376V / LL6376V Regulation & Private Law in Banking & Financial Service", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6376V", + "title": "Regulation & Private Law in Banking & Financial Service", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4376 / LL5376 / LL6376 Regulation & Private Law in Banking & Financial Service", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6377", + "title": "Law in Action: Legal Policymaking Externship", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4377V/LL5377V/LL6377V Law in Action: Legal Policymaking Externship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nSingaporean Citizens / PR\nAs the class size is limited, students must undergo a selection process which may include an interview.\nAll participants are subject to security screening and must obtain the requisite security clearance before they can be admitted to the course.", + "corequisite": "" + }, + { + "moduleCode": "LL6377V", + "title": "Law in Action: Legal Policymaking Externship", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4377/LL5377/LL6377 Law in Action: Legal Policymaking Externship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nSingaporean Citizens / PR\nAs the class size is limited, students must undergo a selection process which may include an interview.\nAll participants are subject to security screening and must obtain the requisite security clearance before they can be admitted to the course.", + "corequisite": "" + }, + { + "moduleCode": "LL6379", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4379V/LL5379V/LL6379V Future of Int’l Commercial\nArbitration in APAC Region", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Commercial Arbitration\nLL4029V,LL5029V,LL6029V,LC5262V;\nLL4029AV,LL5029AV,LL6029AV,LC5262AV", + "corequisite": "International Commercial Arbitration LL4029V,LL5029V,LL6029V,LC5262V; LL4029AV,LL5029AV,LL6029AV,LC5262AV" + }, + { + "moduleCode": "LL6379V", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4379/LL5379/LL6379 Future of Int’l Commercial Arbitration in APAC Region", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nInternational Commercial Arbitration\nLL4029V,LL5029V,LL6029V,LC5262V;\nLL4029AV,LL5029AV,LL6029AV,LC5262AV", + "corequisite": "International Commercial Arbitration LL4029V,LL5029V,LL6029V,LC5262V; LL4029AV,LL5029AV,LL6029AV,LC5262AV" + }, + { + "moduleCode": "LL6381", + "title": "Heritage Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347;LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law; LL4381V/LL5381V/LL6381V Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6381V", + "title": "Heritage Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4347/LL5347/LL6347;LL4347V/LL5347V/LL6347V Art & Cultural Heritage Law; LL4381/LL5381/LL6381 Heritage Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6382", + "title": "Core Aspects of Private International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Not open to anyone who has done:\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation;\nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws;\nLL4205V/LL5205V/LL6205V/LLD5205V;\nLL4205/LL5205/LL6205/LLD5205V Maritime Conflict of Laws at NUS Law, or a substantially similar course elsewhere", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6382V", + "title": "Core Aspects of Private International Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Not open to anyone who has done:\nLL4030V/LL5030V/LL6030V; LL4030/LL5030/LL6030 International Commercial Litigation;\nLL4049V/LL5049V/LL6049V; LL4049/LL5049/LL6049 Principles of Conflict of Laws;\nLL4205V/LL5205V/LL6205V;LLD5205V;\nLL4205/LL5205/LL6205/LL5205V Maritime Conflict of Laws at NUS Law, or a substantially similar course elsewhere", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6383Z", + "title": "International Arbitration & the New York Convention", + "moduleCredit": 2, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6384", + "title": "Harms and Wrongs", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4384V/LL5384V/LL6384V Harms and Wrongs", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6384V", + "title": "Harms and Wrongs", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4384/LL5384/LL6384 Harms and Wrongs", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6385", + "title": "Taxation Law & the Global Digital Economy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4385V/LL5385V/LL6385V Taxation Law & the Global Digital Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6385V", + "title": "Taxation Law & the Global Digital Economy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4385/LL5385/LL6385 Taxation Law & the Global Digital Economy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6387", + "title": "Regulation of Digital Platform", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4387V/LL5387V/LL6387V Regulation of Digital Platforms", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6387V", + "title": "Regulation of Digital Platforms", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4387/LL5387/LL6387 Regulation of Digital Platforms", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6388", + "title": "Comparative Civil Law: Thai Contract Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4388V/LL5388V/LL6388V Comparative Civil Law: Thai Contract Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6388V", + "title": "Comparative Civil Law: Thai Contract Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4388/LL5388/LL6388 Comparative Civil Law: Thai Contract Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6389", + "title": "Asset-Based Financing: Quasi-Security Devices", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4389V/LL5389V/LL6389V Asset-Based Financing: Quasi-Security Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6389V", + "title": "Asset-Based Financing: Quasi-Security Devices", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4389/LL5389/LL6389 Asset-Based Financing: Quasi-Security Devices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6393", + "title": "Liability of Corporate Groups and Networks", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC1004 Law of Torts", + "corequisite": "LC2008 Company Law" + }, + { + "moduleCode": "LL6393V", + "title": "Liability of Corporate Groups and Networks", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC1004 Law of Torts", + "corequisite": "LC2008 Company Law" + }, + { + "moduleCode": "LL6395", + "title": "The Law & Practice of Modern Trust Structures", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4395V/LL5395V/LL6395V The Law & Practice of Modern Trust Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2006 Equity & Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL6395V", + "title": "The Law & Practice of Modern Trust Structures", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4395/LL5395/LL6395 The Law & Practice of Modern Trust Structures", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\nLC2006 Equity & Trusts", + "corequisite": "" + }, + { + "moduleCode": "LL6396", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6397", + "title": "University Research Opportunities Progra", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6398", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6399", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6400", + "title": "Biomedical Law & Ethics", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6402", + "title": "Corporate Insolvency Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6403", + "title": "Family Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6405A", + "title": "Law of Intellectual Property (a)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6405B", + "title": "Law of Intellectual Property (B)", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6407", + "title": "Law Of Insurance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6409", + "title": "International Corporate Finance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6411", + "title": "Personal Property Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LL6412", + "title": "Securities and Capital Markets Regulation", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students doing or have done any of the following module(s) are precluded: (1) International Corporate Finance [8MC - LL4409/LL5409/LLD5409/LL6409; 4MC - LL4238/LL5238/LL6238; 5MC – LL4238V/LL5238V/LL6238V]; (2) Corporate Finance Law & Practice in Singapore [4MC - LL4182/LL5182/LL6182; 5MC – LL4182V/LL5182V/LL6182V]; (3) Securities Regulation [4MC - L4055/LL5055/LL6055; 5MC – LL4055V/LL5055V/LL6055V]; (4) Securities Regulation [Module code: L53.3040 OR LW.10180] under the NYU@NUS Summer Session.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. (b) Company Law [LC2008/LLB2008] or its equivalent in a developed common law jurisdiction (may be taken concurrently).", + "corequisite": "" + }, + { + "moduleCode": "LL6413", + "title": "Civil Justice and Procedure", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who have not studied the core subjects in a Common Law curriculum. \n\nNot open to students who are, or have been, legal practitioners or who have worked in any legal field. \n\nLL4011; LL5011; LL6011 / LL4011V; LL5011V; LL6011V Civil Justice & Process \n\nLL4281; LL5281; LL6281 / LL4281V; LL5281V; LL6281V Civil Procedure", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.\n(It is impossible to study common law adversarial procedure without a background in these subjects.)", + "corequisite": "" + }, + { + "moduleCode": "LL6433", + "title": "Global Data Privacy Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4433V/LL5433V/LL6433V Global Data Privacy Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6433V", + "title": "Global Data Privacy Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LL4433/LL5433/LL6433 Global Data Privacy Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6434", + "title": "International Commodity Trading Law Clinic", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4434V/LL5434V/LL6434V International Commodity Trading Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6434V", + "title": "International Commodity Trading Law Clinic", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4434/LL5434/LL6434 International Commodity Trading Law Clinic", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6435", + "title": "Foundations of Environmental Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4435V/LL5435V/LL6435V Foundations of Environmental Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LL6435V", + "title": "Foundations of Environmental Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4435/LL5435/LL6435 Foundations of Environmental Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5002", + "title": "Admiralty Law & Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5002V", + "title": "Admiralty Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "Students who are taking or have taken LLD5002.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5004", + "title": "Aviation Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5004V", + "title": "Aviation Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5004.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5006", + "title": "Banking Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5006V", + "title": "Banking Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5006.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5007", + "title": "Biotechnology Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5007V", + "title": "Biotechnology Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5007.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5019", + "title": "Credit & Security", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5019V", + "title": "Credit & Security", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5024", + "title": "Introduction to Indonesian Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5024V", + "title": "Introduction To Indonesian Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5024", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5026V", + "title": "Infocoms Law: Competition & Convergence", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5026", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5029", + "title": "International Commercial Arbitration", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5029V", + "title": "International Commercial Arbitration", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5029", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5030", + "title": "International Commercial Litigation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5030V", + "title": "International Commercial Litigation", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5030", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5031", + "title": "International Environmental Law & Policy", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5031V", + "title": "International Environmental Law & Policy", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5031", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5032", + "title": "International Investment Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5032V", + "title": "International Investment Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5032", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5033", + "title": "International Legal Process", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5034", + "title": "International Regulation of Shipping", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5034V", + "title": "International Regulation of Shipping", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5034.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Core Law Curriculum or its equivalent. Students who have completed a course in Law of the Sea or Ocean Law & Policy may have a slight advantage", + "corequisite": "" + }, + { + "moduleCode": "LLD5043", + "title": "Law of Marine Insurance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5043V", + "title": "Law Of Marine Insurance", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5043.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5045", + "title": "Negotiation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5049", + "title": "Principles of Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5049V", + "title": "Principles Of Conflict Of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD4049.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5050", + "title": "Public International Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5051", + "title": "Principles of Restitution", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5054", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5054V", + "title": "Domestic and International Sale of Goods", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5055", + "title": "Securities Regulation", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5060", + "title": "World Trade Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5063", + "title": "Business & Finance For Lawyers", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5063V", + "title": "Business & Finance For Lawyers", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5063.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) NUS Compulsory Core Law Curriculum or equivalent. \n(b) Company Law or its equivalent in a common law jurisdiction (may be taken concurrently)", + "corequisite": "" + }, + { + "moduleCode": "LLD5065", + "title": "Comparative Corporate Governance", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5076", + "title": "It Law I", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5076V", + "title": "IT Law I", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5076.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LLD5077V", + "title": "IT Law II", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LL5077.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent..", + "corequisite": "" + }, + { + "moduleCode": "LLD5085", + "title": "International Trusts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5099", + "title": "Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5099V", + "title": "Maritime Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LLD5099.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5102", + "title": "Advanced Torts", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5128", + "title": "Chinese Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5138", + "title": "Int'l & Comp Law of Sale in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5138V", + "title": "Int'l&Comp Law of Sale in Asia", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5138", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5140", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4140V/LL5140V/LL6140V/LLD5140V Law of the Sea;\nLL4140V/LL5140V/LL6140V/LLD5140V Ocean Law & Policy in Asia; LL4046V/LL5046V/LL6046V Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5140V", + "title": "Law of the Sea: Theory and Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "LL4140/LL5140/LL6140/LLD5140 Law of the Sea;\nLL4140/LL5140/LL6140/LLD5140 Ocean Law & Policy in Asia; LL4046/LL5046/LL6046 Ocean Law & Policy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5164", + "title": "International Projects Law and Practice", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5164V", + "title": "International Projects Law & Practice", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5164.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5180", + "title": "Choice of Law & Jurisdiction in Int’l Commercial Contracts in Asia", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5205", + "title": "Maritime Conflict of Laws", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "LL4002 Admiralty Law and Practice (Co-requisite)" + }, + { + "moduleCode": "LLD5205V", + "title": "Maritime Conflict of Laws", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "Students who are taking or have taken LLD5205.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5214", + "title": "International and Comparative Oil and Gas Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5226", + "title": "Multimodal Transport Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5226V", + "title": "Multimodal Transport Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "Students who are taking or have taken LLD5226.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5246", + "title": "International Carriage of Passengers by Sea", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Curriculum or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "LLD5307", + "title": "EU Maritime Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4307V/LL5307V/LL6307V/LLD5307V EU Maritime Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LLD5322", + "title": "Trade Finance Law", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LLD5322V Trade Finance Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Students should have covered the core private law subjects of Contract, Tort and Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LLD5322V", + "title": "Trade Finance Law", + "moduleCredit": 5, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1 + ], + "preclusion": "LLD5322 Trade Finance Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent. Students should have covered the core private law subjects of Contract, Tort and Trusts.", + "corequisite": "" + }, + { + "moduleCode": "LLD5396", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5397", + "title": "University Research Opportunities Programme", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5400", + "title": "Biomedical Law & Ethics", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5402", + "title": "Corporate Insolvency", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5403", + "title": "Family Law", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5407", + "title": "Law of Insurance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLD5409", + "title": "International Corporate Finance", + "moduleCredit": 8, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LLLL5368", + "title": "Comparative Constitutionalism", + "moduleCredit": 4, + "department": "FoL Dean's Office", + "faculty": "Law", + "semester": [], + "preclusion": "LL4368V/LL5368V/LL6368V", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS Compulsory Core Law Curriculum or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "LSE6101", + "title": "Fundamentals of Environmental Life Sciences Engineering", + "moduleCredit": 8, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSE6201", + "title": "Biofilm Processes", + "moduleCredit": 4, + "department": "NGS Dean's Office", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Prospective students should have a firm knowledge of\nmicrobiology, algebra and calculus. A basic understanding\nof molecular biology would be helpful. No advanced\ncalculus is required.", + "corequisite": "" + }, + { + "moduleCode": "LSM1102", + "title": "Molecular Genetics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "YSC2233", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "GCE 'A' Level or H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM1104", + "title": "General Physiology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "LSM2231", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE `A’ Level H2 Biology or equivalent, or LSM1301 or LSM1301X.", + "corequisite": "" + }, + { + "moduleCode": "LSM1105", + "title": "Evolutionary Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "YSC2216", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE 'A' Level or H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM1106", + "title": "Molecular Cell Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LSM1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM1301", + "title": "General Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GCE `A’ Level or H2 Biology or equivalent, or LSM1301X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM1301X", + "title": "General Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "GCE `A’ Level or H2 Biology or equivalent, or LSM1301", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM1303", + "title": "Animal Behaviour", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Life Sciences Major/Minor and student from Bachelor of Environmental Studies Programme", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM1306", + "title": "Forensic Science", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEK1542", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM1307", + "title": "Waste and Our Environment", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEK1515", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM1401", + "title": "Fundamentals of Biochemistry", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Not for Life Sciences major/minor and student must not have read LSM1101 or its equivalent.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE 'A' Level or H2 Chemistry or equivalent, or CM1417 or CM1417X", + "corequisite": "" + }, + { + "moduleCode": "LSM1601", + "title": "Biology Advanced Placement", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM2101", + "title": "Metabolism and Regulation", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [], + "preclusion": "LSM2211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1101 or LSM1401", + "corequisite": "" + }, + { + "moduleCode": "LSM2102", + "title": "Molecular Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "LSM2232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1101 (or LSM1401) and LSM1102", + "corequisite": "" + }, + { + "moduleCode": "LSM2103", + "title": "Cell Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [], + "preclusion": "LSM2233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1101 or LSM1401 or LSM1102", + "corequisite": "" + }, + { + "moduleCode": "LSM2191", + "title": "Laboratory Techniques in Life Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM2211", + "title": "Metabolism and Regulation", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LSM2101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM2212", + "title": "Human Anatomy", + "moduleCredit": 4, + "department": "Anatomy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "YSC2234 (2-way preclusion)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE 'A' Level or H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM2231", + "title": "General Physiology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "LSM1104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM2232", + "title": "Genes, Genomes and Biomedical Implications", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LSM2102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 and LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM2233", + "title": "Cell Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LSM2103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM2234", + "title": "Introduction to Quantitative Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE `A’ Level H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM2241", + "title": "Introductory Bioinformatics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1105 or LSM1106 or PR1111A", + "corequisite": "" + }, + { + "moduleCode": "LSM2251", + "title": "Ecology and Environment", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "YSC3251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM2252", + "title": "Biodiversity", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LSM1103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level H2 Biology or equivalent, or LSM1301 or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM2253", + "title": "Applied Data Analysis in Ecology and Evolution", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "LSM3257", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1232 or MA1301 or MA1301X or GCE 'A' Level or H2 Mathematics/Further Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "LSM2254", + "title": "Fundamentals of Plant Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 OR LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM2288", + "title": "Basic UROPS in Life Sciences I", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "LSM1102 or LSM1105 or LSM1106; and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "LSM2289", + "title": "Basic UROPS in Life Sciences II", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "LSM1102 or LSM1105 or LSM1106; and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "LSM2291", + "title": "Fundamental Techniques in Microbiology", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM2301", + "title": "Life Sciences Industry Seminar", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Year 2 students in the Life Sciences Major Programme", + "corequisite": "" + }, + { + "moduleCode": "LSM3201", + "title": "Research and Communication in Life Sciences", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "LSM2288 Basic UROPS in Life Sciences I; LSM3288 Advanced UROPS in Life Sciences I; LSM4199 Honours Project in Life Sciences" + }, + { + "moduleCode": "LSM3211", + "title": "Fundamental Pharmacology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK2501", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211 or LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3212", + "title": "Human Physiology: Cardiopulmonary System", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "YSC2234", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "LSM2211", + "corequisite": "" + }, + { + "moduleCode": "LSM3214", + "title": "Human Physiology - Hormones and Health", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211 and LSM3212", + "corequisite": "" + }, + { + "moduleCode": "LSM3215", + "title": "Neuronal Signaling and Memory Mechanisms", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "YSC2231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3216", + "title": "Neuronal Development and Diseases", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "LSM3213 Molecular and Cellular Neurobiology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232 and LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3217", + "title": "Human Ageing", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [], + "preclusion": "YSC3255", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3218", + "title": "Cardiopulmonary Pharmacology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "LSM3221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211", + "corequisite": "" + }, + { + "moduleCode": "LSM3219", + "title": "Neuropharmacology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "LSM3221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211", + "corequisite": "" + }, + { + "moduleCode": "LSM3222", + "title": "Human Neuroanatomy", + "moduleCredit": 4, + "department": "Anatomy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3223", + "title": "Immunology", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233 or PR2122", + "corequisite": "" + }, + { + "moduleCode": "LSM3224", + "title": "Molecular Basis of Human Diseases", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211 or LSM2233 or PR2122", + "corequisite": "" + }, + { + "moduleCode": "LSM3225", + "title": "Molecular Microbiology in Human Diseases", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211 or LSM2232 or LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3226", + "title": "Medical Mycology and Drug Discovery", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233 or LSM2252 or LSM2291", + "corequisite": "" + }, + { + "moduleCode": "LSM3227", + "title": "General Virology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 Molecular Genetics AND\nLSM1106 Molecular Cell Biology AND LSM2191\nLaboratory Techniques in Life Sciences", + "corequisite": "" + }, + { + "moduleCode": "LSM3231", + "title": "Protein Structure and Function", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106 Molecular Cell Biology or PR1111A Pharmaceutical Biochemistry or PHS1111 Fundamental Biochemistry for Pharmaceutical Science", + "corequisite": "" + }, + { + "moduleCode": "LSM3232", + "title": "Microbiology", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211 or LSM2232 or LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3233", + "title": "Developmental Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3234", + "title": "Biological Imaging of Growth and Form", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3235", + "title": "Epigenetics in Human Health and Diseases", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232", + "corequisite": "" + }, + { + "moduleCode": "LSM3241", + "title": "Genomic Data Analysis", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[LSM2232 (Genes, Genomes & Biomedical Implications) AND either CS1010S (Programming Methodology) or equivalent or LSM2253 (Applied Data Analysis in Ecology and Evolution)] \nOR LSM2241 (Introductory Bioinformatics) \nOR CS2220 (Introduction to Computational Biology)", + "corequisite": "" + }, + { + "moduleCode": "LSM3242", + "title": "Translational Microbiology", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3243", + "title": "Molecular Biophysics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3244", + "title": "Molecular Biotechnology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM3245", + "title": "RNA Biology and Technology", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3246", + "title": "Synthetic Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3247", + "title": "Practical Synthetic Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 or LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3252", + "title": "Evolution and Comparative Genomics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1105", + "corequisite": "" + }, + { + "moduleCode": "LSM3254", + "title": "Ecology of Aquatic Environments", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251", + "corequisite": "" + }, + { + "moduleCode": "LSM3255", + "title": "Ecology of Terrestrial Environments", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "LSM3271", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251", + "corequisite": "" + }, + { + "moduleCode": "LSM3256", + "title": "Tropical Horticulture", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "LSM1105 or LSM2231 or LSM2252 or LSM2254", + "corequisite": "" + }, + { + "moduleCode": "LSM3258", + "title": "Comparative Botany", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2231 or LSM2252 or LSM2254", + "corequisite": "" + }, + { + "moduleCode": "LSM3259", + "title": "Fungal Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2252", + "corequisite": "" + }, + { + "moduleCode": "LSM3262", + "title": "Environmental Animal Physiology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2231", + "corequisite": "" + }, + { + "moduleCode": "LSM3263", + "title": "Field Studies in Neotropical Ecosystems", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251", + "corequisite": "" + }, + { + "moduleCode": "LSM3264", + "title": "Environmental Biochemistry", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106", + "corequisite": "" + }, + { + "moduleCode": "LSM3265", + "title": "Entomology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 Ecology and Environment", + "corequisite": "" + }, + { + "moduleCode": "LSM3266", + "title": "Avian Biology and Evolution", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2252", + "corequisite": "" + }, + { + "moduleCode": "LSM3267", + "title": "Behavioural Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 Ecology and Environment", + "corequisite": "" + }, + { + "moduleCode": "LSM3272", + "title": "Global Change Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ENV2101 Global Environmental Change", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2252", + "corequisite": "" + }, + { + "moduleCode": "LSM3273", + "title": "Ecology, Conservation and Management of Sri Lankan Ecosystems", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251", + "corequisite": "" + }, + { + "moduleCode": "LSM3274", + "title": "Eco-Biodiversity Field Techniques in Taiwan & Singapore", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 or LSM2252 or department approval", + "corequisite": "" + }, + { + "moduleCode": "LSM3288", + "title": "Advanced UROPS in Life Sciences I", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM3289", + "title": "Advanced UROPS in Life Sciences II", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Life Sciences as first major and have completed a minimum of 32 MCs in Life Sciences major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "LSM3311", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Life Sciences as first major and have completed a minimum of 32 MCs in Life Sciences major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "LSM3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Life Sciences as first major and have completed a minimum of 32 MCs in Life Sciences major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "LSM3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Life Sciences as first major and have completed a minimum of 32 MCs in LS major at the time of application and have completed LSM3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "LSM3975", + "title": "Lake Ecosystem Dynamics", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "LSM4199", + "title": "Honours Project in Life Sciences", + "moduleCredit": 16, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "LSM4299", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "For Life Sciences major students with overall CAP of 3.50 or more are eligible to enrol for this module (for Cohort 2011 and before). For Life Sciences major students with overall CAP of 3.20 or more are eligible to enrol for this module (for Cohort 2012 and after).", + "corequisite": "" + }, + { + "moduleCode": "LSM4210", + "title": "Topics in Biomedical Science", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211 or LSM2232 or LSM2233", + "corequisite": "LSM4199" + }, + { + "moduleCode": "LSM4211", + "title": "Toxicology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211", + "corequisite": "" + }, + { + "moduleCode": "LSM4212", + "title": "Pharmacogenetics and Drug Responses", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211", + "corequisite": "" + }, + { + "moduleCode": "LSM4213", + "title": "System Neurobiology", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3215 and LSM3216", + "corequisite": "" + }, + { + "moduleCode": "LSM4214", + "title": "Cancer Pharmacology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211", + "corequisite": "" + }, + { + "moduleCode": "LSM4215", + "title": "Extreme Physiology", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3212 Human Physiology: Cardiopulmonary System \nAND \nLSM3214 Human Physiology – Hormones and Health", + "corequisite": "" + }, + { + "moduleCode": "LSM4216", + "title": "Molecular Nutrition and Metabolic Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211", + "corequisite": "" + }, + { + "moduleCode": "LSM4217", + "title": "Functional Ageing", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "YSC3255", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3217 OR LSM 3224", + "corequisite": "" + }, + { + "moduleCode": "LSM4218", + "title": "Biotechnology and Biotherapeutics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1106 Molecular Cell Biology or by Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "LSM4221", + "title": "Drug Discovery and Clinical Trials", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211", + "corequisite": "" + }, + { + "moduleCode": "LSM4222", + "title": "Advanced Immunology", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3223", + "corequisite": "" + }, + { + "moduleCode": "LSM4223", + "title": "Advances in Antimicrobial Strategies", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3225 or LSM3232", + "corequisite": "" + }, + { + "moduleCode": "LSM4224", + "title": "Free Radicals and Antioxidant Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2211", + "corequisite": "" + }, + { + "moduleCode": "LSM4225", + "title": "Genetic Medicine in the Post-Genomic Era", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232", + "corequisite": "" + }, + { + "moduleCode": "LSM4226", + "title": "Infection and Immunity", + "moduleCredit": 4, + "department": "Microbiology and Immunology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3223 and either LSM3225 or LSM3232", + "corequisite": "" + }, + { + "moduleCode": "LSM4227", + "title": "Stem Cell Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232 and LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM4228", + "title": "Experimental Models for Human Disease and Therapy", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM4229", + "title": "Therapeutic and diagnostic agents from animal toxins", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3211 or LSM3231", + "corequisite": "" + }, + { + "moduleCode": "LSM4231", + "title": "Structural Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2234 or LSM3231 or LSM3243, and GCE 'A' Level or H2 Mathematics/Further Mathematics or equivalent or MA1301 or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "LSM4232", + "title": "Advanced Cell Biology", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM4234", + "title": "Mechanobiology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232 and LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM4235", + "title": "Nuclear Mechanics and Genome Regulation", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232", + "corequisite": "" + }, + { + "moduleCode": "LSM4241", + "title": "Functional Genomics", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3231 or LSM3241", + "corequisite": "" + }, + { + "moduleCode": "LSM4242", + "title": "Protein Engineering", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2232 or LSM3231", + "corequisite": "" + }, + { + "moduleCode": "LSM4243", + "title": "Tumour Biology", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM4244", + "title": "Oncogenes and Signal Transduction", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2233", + "corequisite": "" + }, + { + "moduleCode": "LSM4245", + "title": "Advanced Epigenetics and Chromatin Biology", + "moduleCredit": 4, + "department": "Biochemistry", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3235", + "corequisite": "" + }, + { + "moduleCode": "LSM4251", + "title": "Plant Growth and Development", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2254 or LSM3233 or LSM3258", + "corequisite": "" + }, + { + "moduleCode": "LSM4252", + "title": "Reproductive Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3233", + "corequisite": "" + }, + { + "moduleCode": "LSM4254", + "title": "Principles of Taxonomy and Systematics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3241 or LSM3252", + "corequisite": "" + }, + { + "moduleCode": "LSM4255", + "title": "Methods in Mathematical Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2253", + "corequisite": "" + }, + { + "moduleCode": "LSM4256", + "title": "Evolution of Development", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3233 or LSM3252", + "corequisite": "" + }, + { + "moduleCode": "LSM4257", + "title": "Aquatic Vertebrate Diversity", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2252", + "corequisite": "" + }, + { + "moduleCode": "LSM4259", + "title": "Evolutionary Genetics of Reproduction", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 and LSM1105", + "corequisite": "" + }, + { + "moduleCode": "LSM4260", + "title": "Plankton Ecology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2253 OR LSM3254", + "corequisite": "" + }, + { + "moduleCode": "LSM4261", + "title": "Marine Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3254", + "corequisite": "" + }, + { + "moduleCode": "LSM4262", + "title": "Tropical Conservation Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ULS2204, YSC3251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 and either LSM3272 or ENV2101", + "corequisite": "" + }, + { + "moduleCode": "LSM4263", + "title": "Field Studies in Biodiversity", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 and LSM2252", + "corequisite": "" + }, + { + "moduleCode": "LSM4264", + "title": "Freshwater Biology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3254", + "corequisite": "" + }, + { + "moduleCode": "LSM4265", + "title": "Urban Ecology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 and LSM3255", + "corequisite": "" + }, + { + "moduleCode": "LSM4266", + "title": "Aquatic Invertebrate Diversity", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2252", + "corequisite": "" + }, + { + "moduleCode": "LSM4267", + "title": "Light & Vision in Animal Communication", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3267 Behavioural Biology", + "corequisite": "" + }, + { + "moduleCode": "LSM4268", + "title": "Environmental Bioacoustics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM3267\nLSM3272", + "corequisite": "" + }, + { + "moduleCode": "LSM4299", + "title": "Applied Project in Life Sciences", + "moduleCredit": 16, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Pharmacy majors are precluded from reading this module. This module would preclude XX4199 and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for specific major.", + "corequisite": "" + }, + { + "moduleCode": "LX5103", + "title": "Environmental Law", + "moduleCredit": 4, + "department": "SDE Dean's Office", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA1100", + "title": "Basic Discrete Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CS1231, CS1231S, EEE students, CEG students, CPE students, MPE students, COM students, CEC students, YSC2209", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Mathematics or equivalent or H2 Further Mathematics or MA1301 or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1101R", + "title": "Linear Algebra I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EG1401, EG1402, MA1101, MA1311, MA1506, MA1508, FOE students, YSC2232", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Mathematics or H2 Further Mathematics or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1102R", + "title": "Calculus", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EE1401, EE1461, EG1401, EG1402, CE1402, MA1102, MA1312, MA1505, MA1505C, MA1507, MA1521, CEC students, COM students who matriculated on and after 2002 (including poly 2002 intake), FOE students, YSC1216", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Mathematics or H2 Further Mathematics or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1104", + "title": "Multivariable Calculus", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA1104S, MA2207, MA2221, MA2311, MA3208, GM2301, MQ2202, MQ2102, MQ2203, PC1134, PC2201, MA1507, MPE students.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102 or MA1102R or MA1505 or MA1505C or MA1521 or EE1401 or EE1461 or EG1402", + "corequisite": "" + }, + { + "moduleCode": "MA1301", + "title": "Introductory Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Those with A-level or H2 passes in Mathematics or H2 Further Mathematics or who have passed any of the modules MA1101R, MA1102R, MA1301FC, MA1301X, MA1505, MA1506, MA1507, MA1508, MA1521, MA1311, MA1312, MA1421, MPE students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass in GCE ‘O’ Level Additional Mathematics or GCE ‘AO’ Levels or H1 Mathematics", + "corequisite": "" + }, + { + "moduleCode": "MA1301X", + "title": "Introductory Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2, + 3 + ], + "preclusion": "Those with A-level or H2 passes in Mathematics or H2 Further Mathematics", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass in GCE ‘O’ Level Additional Mathematics or GCE ‘AO’ Level or H1 Mathematics", + "corequisite": "" + }, + { + "moduleCode": "MA1311", + "title": "Matrix Algebra", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA1101R, MA1506, MA1508, MA1508E, MA1513, FoE students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AO-Level Mathematics or H1 Mathematics or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1312", + "title": "Calculus with Applications", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA1102R, MA1505, MA1505C, MA1521, MA1511, FoE students,", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AO-Level Mathematics or H1 Mathematics or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1421", + "title": "Basic Applied Mathematics for Sciences", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "Majors in Mathematics, Applied Mathematics, Quantitative Finance or Statistics, second major in Mathematics, Financial Mathematics or Statistics, students who have passed any of the modules MA1102R, MA1312, MA1505, MA1506, MA1507, MA1521.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AO-Level Mathematics or H1 Mathematics", + "corequisite": "" + }, + { + "moduleCode": "MA1505", + "title": "Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students reading a primary major in Mathematics/Applied Mathematics/Quantitative Finance/Data Science and Analytics, MA1102R, MA1312, MA1507, MA1511, MA1521, MA2311, MA2501, YSC1216", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level Mathematics or H2 Mathematics or H2 Further Mathematics or MA1301 or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1506", + "title": "Mathematics II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA1101R, MA1311, MA2312, MA1508, MA2501, EE1461, PC2174, MA1511, MA1512, MA1513, MA1508E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Read MA1102R or MA1505 or MA1521", + "corequisite": "" + }, + { + "moduleCode": "MA1507", + "title": "Advanced Calculus", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "Students reading a primary major in Mathematics/Applied Mathematics/Quantitative Finance/Data Science and Analytics s, MA1102R, MA1505, MA1511, MA1512, MA1521, MA2104, MA2311, YSC2252", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Mathematics or H2 Further Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MA1508", + "title": "Linear Algebra with Applications", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA1101R, MA1311, MA1506, MA1508E, MA1513", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level or H2 Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MA1508E", + "title": "Linear Algebra for Engineering", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1101R, MA1311, MA1506, MA1508, MA1513, YSC2232", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ level or H2 Mathematics or H2 Further Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MA1511", + "title": "Engineering Calculus", + "moduleCredit": 2, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1102R, MA1312, MA1505, MA1506, MA1507, MA1521, MA2311, MA2501, EE1461, PC2134, PC2174, YSC1216", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ level or H2 Mathematics or H2 Further Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MA1512", + "title": "Differential Equations for Engineering", + "moduleCredit": 2, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1506, MA1507, EE1461, PC2134, PC2174 (2-way preclusion)", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ level or H2 Mathematics or H2 Further Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MA1513", + "title": "Linear Algebra with Differential Equations", + "moduleCredit": 2, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1101R, MA1311, MA1506, MA1508, MA1508E, YSC2232", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ level or H2 Mathematics or H2 Further Mathematics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MA1521", + "title": "Calculus for Computing", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students reading a primary major in Mathematics/Applied Mathematics/Quantitative Finance/Data Science and Analytics, MA1102R, MA1312, MA1505, MA1507, MA2501, FoE students, YSC1216", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘A’ Level Mathematics or H2 Mathematics or H2 Further Mathematics or MA1301 or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "MA1601", + "title": "Mathematics Advanced Placement", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA2101", + "title": "Linear Algebra II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA2101S, MA2101H, MA2201, MA2203, MQ2201, MQ2101, MQ2203", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1101R or MA1506 or MA1508 or MA1508E or MA1513", + "corequisite": "" + }, + { + "moduleCode": "MA2101S", + "title": "Linear Algebra II (S)", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA2101, MA2101H, MA2201, MA2203, MQ2201, MQ2101, MQ2203", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1101R or MA1506 or MA1508 or MA1508E or MA1513) and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA2104", + "title": "Multivariable Calculus", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1104, MA2311, MA1507, MPE students, YSC2252", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102R or MA1505 or MA1511 or MA1521", + "corequisite": "" + }, + { + "moduleCode": "MA2108", + "title": "Mathematical Analysis I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA2108S, MA2311, YSC3206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102R or MA1505 or MA1511 or MA1505C or MA1507 or MA1521", + "corequisite": "" + }, + { + "moduleCode": "MA2108S", + "title": "Mathematical Analysis I (S)", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA2108, MA2206, MA2208, MA2221, MA2311, MQ2202, MQ2102, MQ2203, CN2401, EE2401, ME2492", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1102R or MA1505 or MA1511 or MA1505C or MA1507 or MA1521) and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA2202", + "title": "Algebra I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA2202S, MA3250, MQ3201,CVE students, YSC3237", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1100 or MA1100S or CS1231 or CS1231S", + "corequisite": "" + }, + { + "moduleCode": "MA2202S", + "title": "Algebra I (S)", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA2202, MA3250, MQ3201, CVE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1100 or MA1100S or CS1231 or CS1231S) and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA2213", + "title": "Numerical Analysis I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CE2407, ME3291, CN3421, CN3411, CHE students (for breadth requirements), EVE students (for breadth requirements), DSA2102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1102R or MA1312 or MA1507 or MA1505 or MA1521 or MA1511 or EG1402 or EE1401 or EE1461) and (MA1101R or MA1311 or MA1508 or MA1506 or MA1508E or MA1513)", + "corequisite": "" + }, + { + "moduleCode": "MA2214", + "title": "Combinatorics and Graphs I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1100 or MA1101R or MA1311 or MA1506 or MA1508 or MA1508E or MA1513 or CS1231 or CS1231S", + "corequisite": "" + }, + { + "moduleCode": "MA2216", + "title": "Probability", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST2131 (Cross-listing), ST2334, CE2407, YSC2243", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102R or MA1312 or MA1507 or MA1505 or MA1505C or MA1511 or MA1521", + "corequisite": "" + }, + { + "moduleCode": "MA2219", + "title": "Introduction to Geometry", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1100 or MA1101R or MA1506 or MA1508 or MA1508E or MA1513 or MA1102R or MA1505 or MA1507 or MA1511 or CS1231 or CS1231S", + "corequisite": "" + }, + { + "moduleCode": "MA2288", + "title": "Basic UROPS in Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "MA1101R and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA2289", + "title": "Basic UROPS in Mathematics II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1101R and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA2311", + "title": "Techniques in Advanced Calculus", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA1104, MA2104, MA1505, MA1507, MA1511, MA2108, MA2108S, MPE students, Mathematics majors, Applied Mathematics majors, Quantitative Finance majors, second major in Mathematics, second major in Financial Mathematics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102R or MA1312 or MA1421 or MA1521", + "corequisite": "" + }, + { + "moduleCode": "MA2312", + "title": "Introduction to Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA3220, MA1506, MA2501, Mathematics majors, Applied Mathematics majors, Quantitative Finance majors, second major in Mathematics, second major in Financial Mathematics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA1101R or MA1311} and {MA1102R or MA1312 or MA1421 or MA1505 or MA1521}", + "corequisite": "" + }, + { + "moduleCode": "MA2501", + "title": "Differential Equations and Systems", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA1505, MA1505C, MA1506, MA1512, MA1521, MA2210, MA2312, MA1511", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1507 and (MA1508 or MA1508E)", + "corequisite": "" + }, + { + "moduleCode": "MA3110", + "title": "Mathematical Analysis II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA2118, MA2118H, MA2205, MQ3202, MA3110S, ST2236, YSC3206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2108 or MA2108S", + "corequisite": "" + }, + { + "moduleCode": "MA3110S", + "title": "Mathematical Analysis II (S)", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA2118, MA2118H, MA2205, MQ3202, MA3110", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2108 or MA2108S) and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA3111", + "title": "Complex Analysis I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA3111S, EE3002, MPE students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA2104 or MA1507) and (MA3110 or MA3110S)", + "corequisite": "" + }, + { + "moduleCode": "MA3111S", + "title": "Complex Analysis I (S)", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA3111, EE3002, MPE students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA2104 or MA1507) and (MA3110 or MA3110S) and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA3201", + "title": "Algebra II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "YSC3237", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2202 or MA2202S) and (MA2101 or MA2101S)", + "corequisite": "" + }, + { + "moduleCode": "MA3205", + "title": "Set Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1100 or MA1100S or CS1231 or CS1231S", + "corequisite": "" + }, + { + "moduleCode": "MA3209", + "title": "Mathematical Analysis III", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA3213, MA3251", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "(MA3110 or MA3110S) and (MA1104 or MA2104 or MA1507)", + "corequisite": "" + }, + { + "moduleCode": "MA3218", + "title": "Applied Algebra", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA2202, MA2202S, EE4103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2101 or MA2101S", + "corequisite": "" + }, + { + "moduleCode": "MA3219", + "title": "Computability Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1100 or MA1100S or CS1231 or CS1231S", + "corequisite": "" + }, + { + "moduleCode": "MA3220", + "title": "Ordinary Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA2312, PC2174", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA2104 or MA1505 or MA1507 or MA1511 or MA1521) and (MA1101R or MA1311 or MA1506 or MA1508 or MA1508E or MA1513) and (MA2108 or MA2108S)", + "corequisite": "" + }, + { + "moduleCode": "MA3227", + "title": "Numerical Analysis II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ME3291", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2213 and (MA1104 or MA2104 or MA1505 or MA1506 or MA1507 or MA1511 or MA2311) and (MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "MA3229", + "title": "Intro. to Geometric Modelling", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA2104 or MA1505 or MA1507 or MA1511 or MA2311) and (MA1101R or MA1506 or MA1508 or MA1508E or MA1513)", + "corequisite": "" + }, + { + "moduleCode": "MA3233", + "title": "Combinatorics and Graphs II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2214", + "corequisite": "" + }, + { + "moduleCode": "MA3236", + "title": "Non-Linear Programming", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "DSC3214 or DSN3701", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1104 or MA2104 or MA1506 or MA1507 or MA1505 or MA1511 or MA2311", + "corequisite": "" + }, + { + "moduleCode": "MA3238", + "title": "Stochastic Processes I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST3236.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA1101 or MA1101R or MA1311 or MA1508 or GM1302} and {MA2216 or ST2131}", + "corequisite": "" + }, + { + "moduleCode": "MA3252", + "title": "Linear and Network Optimisation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MQ2204, CS3252, IC2231, DSC3214, DSN3701, MA3235, BH3214, ISE students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1101R or MA1306 or MA1311 or MA1508 or MA1506 or MA1508E or MA1513", + "corequisite": "" + }, + { + "moduleCode": "MA3256", + "title": "Applied Cryptography", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "CS423.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2202", + "corequisite": "" + }, + { + "moduleCode": "MA3259", + "title": "Mathematical Methods in Genomics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2216 or MA3233 or MA3501 or ST2131 or ST2334 or LSM2241", + "corequisite": "" + }, + { + "moduleCode": "MA3264", + "title": "Mathematical Modelling", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MPE students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1104 or MA2104 or MA1104S or MA1506 or MA2108 or MA2108S or MA2221 or MA1505 or MA1511 or MA2311", + "corequisite": "" + }, + { + "moduleCode": "MA3265", + "title": "Introduction to Number Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA2108 or MA2108S} and {MA2202 or MA2202S}", + "corequisite": "" + }, + { + "moduleCode": "MA3266", + "title": "Introduction to Fourier Analysis", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1101R or MA1506 or MA1508 or MA1508E or MA1513) and (MA1104 or MA2104) and MA3220", + "corequisite": "" + }, + { + "moduleCode": "MA3269", + "title": "Mathematical Finance I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "QF2101 Basic Financial Mathematics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010 or CS1010E or CS1010S or CS1010FC or IT1006 or CS1101 or CS1101C or CS1101S or IT1002) and (ST2131 or ST2334 or MA2216)", + "corequisite": "" + }, + { + "moduleCode": "MA3288", + "title": "Advanced UROPS in Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA3289", + "title": "Advanced UROPS in Mathematics II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA3291", + "title": "Undergraduate Seminar in Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2101/MA2101S and MA2108/MA2108S", + "corequisite": "" + }, + { + "moduleCode": "MA3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Mathematics or Applied Mathematics as first major and have completed a minimum of 32 MCs in Mathematics or Applied Mathematics major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "MA3311", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Mathematics or Applied Mathematics as first major and have completed a minimum of 32 MCs in Mathematics or Applied Mathematics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "MA3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Mathematics or Applied Mathematics as first major and have completed a minimum of 32 MCs in Mathematics or Applied Mathematics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "MA3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared MA as first major and have completed a minimum of 32 MCs in MA major at the time of application and have completed MA3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "MA4199", + "title": "Honours Project in Mathematics", + "moduleCredit": 12, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XFS4199M", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Only for students matriculated from 2002/2003, subject to faculty and departmental requirements", + "corequisite": "" + }, + { + "moduleCode": "MA4201", + "title": "Commutative Algebra", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3202 or MA3203 or MA3201", + "corequisite": "" + }, + { + "moduleCode": "MA4203", + "title": "Galois Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3201", + "corequisite": "" + }, + { + "moduleCode": "MA4207", + "title": "Mathematical Logic", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3110 or MA3110S or MA3205 or MA3219", + "corequisite": "" + }, + { + "moduleCode": "MA4211", + "title": "Functional Analysis", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3207H or MA3209", + "corequisite": "" + }, + { + "moduleCode": "MA4221", + "title": "Partial Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3220", + "corequisite": "" + }, + { + "moduleCode": "MA4229", + "title": "Approximation Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2101 or MA2101S) and (MA3110 or MA3110S)", + "corequisite": "" + }, + { + "moduleCode": "MA4230", + "title": "Matrix Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA2101 or MA2101S} and {MA2213 or DSA2102}", + "corequisite": "" + }, + { + "moduleCode": "MA4233", + "title": "Dynamical Systems", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3220", + "corequisite": "" + }, + { + "moduleCode": "MA4235", + "title": "Topics in Graph Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3233", + "corequisite": "" + }, + { + "moduleCode": "MA4247", + "title": "Complex Analysis II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3111 or MA3111S", + "corequisite": "" + }, + { + "moduleCode": "MA4248", + "title": "Theoretical Mechanics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "MA3224.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2108 or MA2108S or MA2212 or PC2212", + "corequisite": "" + }, + { + "moduleCode": "MA4251", + "title": "Stochastic Processes II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA3237, MA3239, GM3310, ST4238, ISE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3238 or ST3236", + "corequisite": "" + }, + { + "moduleCode": "MA4252", + "title": "Advanced Ordinary Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3220", + "corequisite": "" + }, + { + "moduleCode": "MA4254", + "title": "Discrete Optimization", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA3235, ISE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2215 or MA3252 or DSC3214 or DSN3701", + "corequisite": "" + }, + { + "moduleCode": "MA4255", + "title": "Numerical Methods in Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ME4233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA2213 or DSA2102} and MA3220", + "corequisite": "" + }, + { + "moduleCode": "MA4257", + "title": "Financial Mathematics II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3245", + "corequisite": "" + }, + { + "moduleCode": "MA4260", + "title": "Stochastic Operations Research", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ISE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA2216 or ST2131 or ST2334} and {MA3236 or MA3252 or DSC3214 or DSN3701}", + "corequisite": "" + }, + { + "moduleCode": "MA4261", + "title": "Coding and Cryptography", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "EEE students, CEG students, CPE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3201 or MA3218 or MA3265", + "corequisite": "" + }, + { + "moduleCode": "MA4262", + "title": "Measure and Integration", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3209", + "corequisite": "" + }, + { + "moduleCode": "MA4263", + "title": "Introduction to Analytic Number Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2202 or MA2202S) and (MA3111 or MA3111S)", + "corequisite": "" + }, + { + "moduleCode": "MA4264", + "title": "Game Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "EC3312.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA3236 or MA3252 or DSC3214 or DSN3701) and (MA2216 or ST2131 or ST2334)", + "corequisite": "" + }, + { + "moduleCode": "MA4266", + "title": "Topology", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3209", + "corequisite": "" + }, + { + "moduleCode": "MA4267", + "title": "Discrete Time Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3245 (for students enrolled in the Faculty of Science)", + "corequisite": "" + }, + { + "moduleCode": "MA4268", + "title": "Mathematics for Visual Data Processing", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2213", + "corequisite": "" + }, + { + "moduleCode": "MA4269", + "title": "Mathematical Finance II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA3245 Financial Mathematics I\nMA4257 Financial Mathematics II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA1506 or MA1507 or MA1511 or MA2104 or MA2311) and MA3269", + "corequisite": "" + }, + { + "moduleCode": "MA4269A", + "title": "Mathematical Finance II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA3245 Financial Mathematics I\nMA4257 Financial Mathematics II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Either one of these:\nMA1104 Multivariable Calculus\nor MA1506 Mathematics II\nor MA1507 Advanced Calculus\nor MA2104 Multivariable Calculus\nor MA2311 Techniques in Advanced Calculus\nand MA3269 Mathematical Finance I", + "corequisite": "" + }, + { + "moduleCode": "MA4270", + "title": "Data Modelling and Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "CS5339 Theory and Algorithms for Machine Learning and DSA5102 Foundations of Machine Learning", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{MA2213 or DSA2102} and {MA2216 or ST2131 or ST2334}", + "corequisite": "" + }, + { + "moduleCode": "MA4271", + "title": "Differential Geometry of Curves and Surfaces", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA2104 or MA1507 or MA1505 or MA2311) and (MA2101 or MA2101S)", + "corequisite": "" + }, + { + "moduleCode": "MA4272", + "title": "Mathematical Tools for Data Science", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2213 and (MA3236 or MA3252 or MA3264)", + "corequisite": "" + }, + { + "moduleCode": "MA4291", + "title": "Undergraduate Topics in Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA4292", + "title": "Undergraduate Topics in Mathematics II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5198", + "title": "Graduate Seminar Module in Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Only for graduate research students in the Department of Mathematics who matriculated in 2004 or later.", + "corequisite": "" + }, + { + "moduleCode": "MA5202", + "title": "Number Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4203 or MA5203 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5203", + "title": "Graduate Algebra I", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3201 and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5204", + "title": "Graduate Algebra IIA", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5203 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5205", + "title": "Graduate Analysis I", + "moduleCredit": 5, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA5215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4262 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5206", + "title": "Graduate Analysis II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4211 and {MA4262 or MA5205}, or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5208", + "title": "Algebraic Geometry", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3201 or MA5203 or MA5204 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5209", + "title": "Algebraic Topology", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3251 or MA4215 or MA4266", + "corequisite": "" + }, + { + "moduleCode": "MA5210", + "title": "Differentiable Manifolds", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3209 or MA3215 or MA3251 or MA4266 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5211", + "title": "Lie Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3201 or MA5203 or MA5218 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5213", + "title": "Advanced Partial Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4221 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5216", + "title": "Differential Geometry", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5210 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "MA5217", + "title": "Graduate Complex Analysis", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA4247 Complex Analysis II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5218", + "title": "Graduate Algebra IIB", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5203 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5219", + "title": "Logic and Foundation of Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4207 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5220", + "title": "Logic and Foundation of Mathematics II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3205 and MA4207, or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5232", + "title": "Modeling and Numerical Simulations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA5233", + "title": "Computational Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3228 or MA4255 or MA4230 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5235", + "title": "Advanced Graph Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4235 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5236", + "title": "Homology Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5209 or MA5210 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5238", + "title": "Fourier Analysis", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5205 or MA3266 or MA3266S or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5240", + "title": "Finite Element Method", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5233 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5241", + "title": "Computational Harmonic Analysis", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4229 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5242", + "title": "Wavelets", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4229", + "corequisite": "" + }, + { + "moduleCode": "MA5243", + "title": "Advanced Mathematical Programming", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3236 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5244", + "title": "Advanced Topics in Operations Research", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Variable, depending on choice of topics or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5245", + "title": "Advanced Financial Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4269 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5248", + "title": "Stochastic Analysis in Mathematical Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4262 or MA3245 or MA4269 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5249", + "title": "Stochastic Processes and Algorithms", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "EE5137, BDC6306, MA4251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2216 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "MA5250", + "title": "Computational Fluid Dynamics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5251", + "title": "Spectral Methods and Applications", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Department approval", + "corequisite": "" + }, + { + "moduleCode": "MA5252", + "title": "Methods of Applied Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4221 or MA4252 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5253", + "title": "Riemann Surfaces", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4247 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5259", + "title": "Probability Theory I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "ST4237, ST5214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3207H or MA3207 or MA4262 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5260", + "title": "Probability Theory II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ST5205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5259 or ST5214 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5261", + "title": "Applied Stochastic Processes", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3238 or ST3236", + "corequisite": "" + }, + { + "moduleCode": "MA5262", + "title": "Stochastic Operations Research Models", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3237 or MA3253", + "corequisite": "" + }, + { + "moduleCode": "MA5264", + "title": "Computational Molecular Biology Ii", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3259", + "corequisite": "" + }, + { + "moduleCode": "MA5265", + "title": "Advanced Numerical Analysis", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2101 or MA2101S) and MA2213", + "corequisite": "" + }, + { + "moduleCode": "MA5266", + "title": "Optimization", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2101", + "corequisite": "" + }, + { + "moduleCode": "MA5267", + "title": "Stochastic Calculus", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5260 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5268", + "title": "Theory and algorithms for nonlinear optimization", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "IE5268", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3252 Linear and Network Optimisation or BDC6111/IE6001 Foundations on Optimization or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA5269", + "title": "Optimal Stopping and Stochastic Control in Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval for non-PhD students.", + "corequisite": "" + }, + { + "moduleCode": "MA5295", + "title": "Dissertation For Msc By Coursework", + "moduleCredit": 8, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval (for students in 2006/07 and later cohorts who are enrolled in M.Sc. in Mathematics by course work)", + "corequisite": "" + }, + { + "moduleCode": "MA5401", + "title": "Graduate Internship in Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "MA5402 Graduate Internship in Mathematics II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA5402", + "title": "Graduate Internship in Mathematics II", + "moduleCredit": 8, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "MA5401 Graduate Internship in Mathematics I", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA6201", + "title": "Topics in Algebra and Number Theory I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6202", + "title": "Topics in Algebra and Number Theory Ii", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6205", + "title": "Topics in Analysis I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Variable, depending on choice of topics or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6206", + "title": "Topics in Analysis Ii", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6211", + "title": "Topics in Geometry and Topology I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6212", + "title": "Topics in Geometry and Topology II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6215", + "title": "Topics in Differential Equations", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6216", + "title": "Advanced Dynamical Systems", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA4233 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6217", + "title": "Homotopy Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5236 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6219", + "title": "Recursion Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5219 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6220", + "title": "Model Theory", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA5219 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6221", + "title": "Topics in Combinatorics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6222", + "title": "Topics in Logic I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "MA6223", + "title": "Topics in Logic II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "MA6225", + "title": "Topics in Coding Theory and Cryptography", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6235", + "title": "Topics in Financial Mathematics", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6241", + "title": "Topics in Numerical Methods", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA6251", + "title": "Topics in Applied Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA6252", + "title": "Topics in Applied Mathematics Ii", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MA6253", + "title": "Conic Programming", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6291", + "title": "Topics in Mathematics I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6292", + "title": "Topics in Mathematics Ii", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MA6293", + "title": "Topics in Mathematics Iii", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "MB5002", + "title": "External Institution Module 2", + "moduleCredit": 2, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5003", + "title": "External Institution Module 3", + "moduleCredit": 3, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5004", + "title": "External Institution Module 4", + "moduleCredit": 4, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5006", + "title": "External Institution Module 6", + "moduleCredit": 6, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5008", + "title": "External Institution Module 8", + "moduleCredit": 8, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5010", + "title": "External Institution Module 10", + "moduleCredit": 10, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5012", + "title": "External Institution Module 12", + "moduleCredit": 12, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Mechanobiology Institute (MBI)", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5101", + "title": "The Cell as a Machine", + "moduleCredit": 4, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic Physical Chemistry, Calculus, Biology, Graduate standing or approval of the module coordinator.", + "corequisite": "" + }, + { + "moduleCode": "MB5102", + "title": "Topics in Mechanobiology", + "moduleCredit": 4, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic Physical Chemistry, Calculus, Biology, Graduate\nstanding, MB5101 or approval of the module coordinator.", + "corequisite": "" + }, + { + "moduleCode": "MB5103", + "title": "Research Seminars in Mechanobiology", + "moduleCredit": 2, + "department": "Mechanobiology Institute (MBI)", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Designed for 2nd year doctoral students", + "corequisite": "" + }, + { + "moduleCode": "MB5104", + "title": "Integrative Approach To Understand Cell Functions", + "moduleCredit": 4, + "department": "Mechanobiology Institute (MBI)", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MB5105", + "title": "Microfabrication for Biologists", + "moduleCredit": 2, + "department": "Mechanobiology Institute (MBI)", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MCI5001", + "title": "Clinical Epidemiology I", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "Only students enrolled in the Master of Clinical Investigation (MCI) programme can apply. All other students will be considered on a case-by-case basis, and approval has to be sought from both the module coordinator and the MCI programme director", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MCI5006", + "title": "Clinical Epidemiology and Biostatistics Ii", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "Only students enrolled in the Master of Clinical Investigation (MCI) programme can apply. All other students will be considered on a case-by-case basis, and approval has to be sought from both the module coordinator and the MCI programme director", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MCI5007", + "title": "Scientific Writing", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "Only students enrolled in the Master of Clinical Investigation (MCI) programme can apply. All other students will be considered on a case-by-case basis, and approval has to be sought from both the module coordinator and the MCI programme director", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MCI5008", + "title": "Research Project", + "moduleCredit": 8, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MCI5009", + "title": "Health Services Research Methods for Clinicians", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD1120A", + "title": "Biochemistry", + "moduleCredit": 1, + "department": "Biochemistry", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD1130A", + "title": "Physiology", + "moduleCredit": 1, + "department": "Physiology", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD1140", + "title": "Normal Structure and Function", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD2000", + "title": "Microbiology & Pathology", + "moduleCredit": 1, + "department": "Microbiology and Immunology", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD2112A", + "title": "Microbiology", + "moduleCredit": 1, + "department": "Microbiology and Immunology", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD2140", + "title": "Abnormal Structure and Function", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Passed First Professional M.B.,B.S Examination\nMD1140 Normal Structure and Function", + "corequisite": "" + }, + { + "moduleCode": "MD2141A", + "title": "Pathology", + "moduleCredit": 1, + "department": "Pathology", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD2150", + "title": "Clinical Skills Foundation Programme", + "moduleCredit": null, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Pass First Professional M.B.,B.S. Examination", + "corequisite": "" + }, + { + "moduleCode": "MD3000", + "title": "Medicine", + "moduleCredit": 1, + "department": "Medicine", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD3011A", + "title": "Medicine", + "moduleCredit": 1, + "department": "Medicine", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD3012A", + "title": "Paediatrics", + "moduleCredit": 1, + "department": "Paediatrics", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD3021A", + "title": "Surgery", + "moduleCredit": 1, + "department": "Surgery", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD3140", + "title": "Core Clinical Practice", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Pass Second Professional M.B.,B.S. Examination", + "corequisite": "" + }, + { + "moduleCode": "MD4140", + "title": "Acute and Specialty Clinical Practice", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "MD3140 Core Clinical Practice", + "corequisite": "N.A." + }, + { + "moduleCode": "MD4150", + "title": "Community Health Posting", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MD5140", + "title": "Medicine", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Pass Fourth Professional M.B.,B.S. Examination\nMD4140 Acute and Specialty Clinical Practice", + "corequisite": "" + }, + { + "moduleCode": "MD5150", + "title": "Surgery", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Pass Fourth Professional M.B.,B.S. Examination\nMD4140 Acute and Specialty Clinical Practice", + "corequisite": "" + }, + { + "moduleCode": "MD5160", + "title": "Electives", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Pass Second Professional M.B. B.S. Examination", + "corequisite": "" + }, + { + "moduleCode": "MD5171", + "title": "Urop", + "moduleCredit": 1, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5102", + "title": "Techniques in Biomedical Research", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5105", + "title": "Clinical Research Methodology", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5108", + "title": "Biostatistics For Basic Research", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5204", + "title": "Advanced Topics in Pharmacology", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5205", + "title": "Neuroscience", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5207", + "title": "Clinical immunology and Immunotherapeutics", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5214", + "title": "Research Skills", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5215", + "title": "Applied Bioethics and Biolaw", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5216", + "title": "Ethical, Legal and Economic issues in Health Policies (in Asia)", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5218", + "title": "Biochemical and genetic approaches to understanding cell biology", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "No special pre-requisites", + "corequisite": "" + }, + { + "moduleCode": "MDG5219", + "title": "Medical Mycology: Core Principles and Recent Interests", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Basic understanding of Microbiology and Immunology at the undergraduate level", + "corequisite": "" + }, + { + "moduleCode": "MDG5220", + "title": "Array and Omics", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "MDG5214", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Students should have basic knowledge of protein\nbiochemistry and DNA biology", + "corequisite": "" + }, + { + "moduleCode": "MDG5221", + "title": "Viral vectors for manipulating gene expression", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5222", + "title": "Cardiovascular and Metabolic Diseases", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Students should preferably working on a research project related to cardiovascular or metabolic diseases.", + "corequisite": "" + }, + { + "moduleCode": "MDG5223", + "title": "Stem Cells and Regenerative Medicine", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5224", + "title": "Animal Models of Human Diseases", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5225", + "title": "Fundamentals of Molecular Imaging", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "“A” level understanding on physics, chemistry and biology", + "corequisite": "" + }, + { + "moduleCode": "MDG5226", + "title": "Antimicrobial resistance and drug discovery", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5227", + "title": "Bio-Innovation & Entrepreneurship", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Open to students from Life Sciences, Dental, Medicine, School of Public Health, Nursing (ie. Life Sciences, BDS, MBBS, BSc (Pharm), BNursing), and Biomedical Engineering. In teamwork students must be able to develop and present a business-idea & -plan in the biotech\nor life sciences field.", + "corequisite": "" + }, + { + "moduleCode": "MDG5228", + "title": "Hybrid Imaging: An Advanced Imaging Concept and Modality", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "“A” level understanding on physics, chemistry and biology", + "corequisite": "" + }, + { + "moduleCode": "MDG5229", + "title": "Advanced Topics in Signal Transduction", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5230", + "title": "Bioethics: Core Philosophical and Empirical Approaches", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5231", + "title": "Topics in Biomedical and Behavioural Research Ethics", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5232", + "title": "Case studies in the biotechnology industry", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Open to all NUSMed postgraduate students", + "corequisite": "" + }, + { + "moduleCode": "MDG5233", + "title": "Current Topics in Drug Design and Development", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5234", + "title": "Independent Study Module (CBmE)", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Please refer to CBmE for the ISM prerequites.", + "corequisite": "" + }, + { + "moduleCode": "MDG5236", + "title": "Pathways to Biomedical Innovation and Enterprise", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Open to students from Life Sciences, Dental, Medicine,\nSchool of Public Health, Nursing (ie. Life Sciences, BDS,\nMBBS, BSc (Pharm), BNursing), and Biomedical\nEngineering. In teamwork students must be able to\ndevelop and present an applied research proposal in the\nbiotech or life sciences field.", + "corequisite": "" + }, + { + "moduleCode": "MDG5237", + "title": "Biomedical Innovation Capstone", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "MDG5227 Bio-Innovation & Entrepreneurship\nMDG5236 Principles & Concepts in Translational\nResearch", + "corequisite": "" + }, + { + "moduleCode": "MDG5238", + "title": "Clinical Pharmacology and Pharmacotherapeutics I", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR5801G Integrated Clinical Decision Making and Management I" + }, + { + "moduleCode": "MDG5239", + "title": "Clinical Pharmacology and Pharmacotherapeutics II", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "MDG5238 Clinical Pharmacology and Pharmacotherapeutics I", + "corequisite": "" + }, + { + "moduleCode": "MDG5240", + "title": "Independent Study Module –Innovation Capstone Project", + "moduleCredit": 2, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "MDG5236 Principles and Concepts in Translational Research or MDG5237 Biomedical Innovation Capstone", + "corequisite": "" + }, + { + "moduleCode": "MDG5300", + "title": "Molecular Basis of Appetite and Nutrient Intake", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Basic knowledge of biochemistry, cell biology and general physiology is required.", + "corequisite": "" + }, + { + "moduleCode": "MDG5302", + "title": "Independent Study Module (PCM)", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MDG5771", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "NUS Medicine Dean's Office", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME1102", + "title": "Engineering Principles and Practice I", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EG1111", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2101", + "title": "Fundamentals Of Mechanical Design", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2101E", + "title": "Fundamentals of Mechanical Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2101, TME2101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2102", + "title": "Engineering Innovation and Modelling", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2103", + "title": "Engineering Visualization & Modeling", + "moduleCredit": 3, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2104", + "title": "Engineering Principles and Practice II", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EG1112", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2112", + "title": "Strength of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1111 Engineering Principles and Practice I (for Cohort 18/19 & before)\nME1102 Engineering Principles and Practice I (for Cohort 19/20 and after)", + "corequisite": "" + }, + { + "moduleCode": "ME2113", + "title": "Mechanics Of Materials I", + "moduleCredit": 3, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109/CE1109X", + "corequisite": "" + }, + { + "moduleCode": "ME2114", + "title": "Mechanics of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2112 Strength of Materials", + "corequisite": "" + }, + { + "moduleCode": "ME2114E", + "title": "Mechanics of Materials II", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM1111, TME2114, ME2114", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2112 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME2115", + "title": "Mechanics Of Machines", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME1102", + "corequisite": "" + }, + { + "moduleCode": "ME2121", + "title": "Engineering Thermodynamics and Heat Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME1102", + "corequisite": "" + }, + { + "moduleCode": "ME2121E", + "title": "Engineering Thermodynamics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM1121, TME2121", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1431 or PC1431FC or PC1431X or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME2134", + "title": "Fluid Mechanics I", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME1102", + "corequisite": "" + }, + { + "moduleCode": "ME2134E", + "title": "Fluid Mechanics I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM1131, TME2134", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2135", + "title": "Intermediate Fluid Mechanics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134", + "corequisite": "" + }, + { + "moduleCode": "ME2135E", + "title": "Fluid Mechanics II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2131, TME2135, ME2135", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134E", + "corequisite": "" + }, + { + "moduleCode": "ME2142", + "title": "Feedback Control Systems", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "ME2142E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1512 and MA1513", + "corequisite": "" + }, + { + "moduleCode": "ME2142E", + "title": "Feedback Control Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3142, TME2142", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TM2401", + "corequisite": "" + }, + { + "moduleCode": "ME2143", + "title": "Sensors & Actuators", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2143E", + "title": "Sensors and Actuators", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2141, TME2143, ME2143", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1431 or PC1431FC or PC1431X or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME2151", + "title": "Principles of Mechanical Eng. Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MLE1101”.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "None for engineering students", + "corequisite": "" + }, + { + "moduleCode": "ME2151E", + "title": "Principles of Mechanical Eng. Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM1151, TME2151", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2162", + "title": "Manufacturing Processes", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME2162E", + "title": "Manufacturing Processes", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM2162, TME3162, TME3162, ME3162E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3000", + "title": "Independent Study 1", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3001", + "title": "Independent Study 2", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3101", + "title": "Mechanical Systems Design I", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2101", + "corequisite": "" + }, + { + "moduleCode": "ME3102", + "title": "Mechanical Systems Design II", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME3101", + "corequisite": "" + }, + { + "moduleCode": "ME3103", + "title": "Mechanical Systems Design", + "moduleCredit": 6, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "ME3101 Mechanical Systems Design I\nME3102 Mechanical Systems Design II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2101 Fundamentals of Mechanical Design\nME2103 Engineering Visualisation and Modelling", + "corequisite": "" + }, + { + "moduleCode": "ME3112E", + "title": "Mechanics of Machines", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM2112, TME3112", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3122", + "title": "Heat Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3122E", + "title": "Heat Transfer", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2122, TME3122, ME2143", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3211", + "title": "Mechanics Of Solids", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2114", + "corequisite": "" + }, + { + "moduleCode": "ME3211E", + "title": "Mechanics of Solids", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3211, TME3211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2114E", + "corequisite": "" + }, + { + "moduleCode": "ME3221", + "title": "Sustainable EnergyConversion", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2121", + "corequisite": "" + }, + { + "moduleCode": "ME3231", + "title": "Compressible And Unsteady Flow", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134", + "corequisite": "" + }, + { + "moduleCode": "ME3232", + "title": "Compressible Flow", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME3231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I", + "corequisite": "" + }, + { + "moduleCode": "ME3233", + "title": "Unsteady Flow in Fluid Systems", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME3231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I", + "corequisite": "" + }, + { + "moduleCode": "ME3233E", + "title": "Unsteady Flow in Fluid Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "ME3233 Unsteady Flow in Fluid Systems\nTME3233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2135/ME2135E or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME3241", + "title": "Microprocessor Applications", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3241E", + "title": "Microprocessor Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM3241, TME3241", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME2143E" + }, + { + "moduleCode": "ME3242", + "title": "Automation", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3242E", + "title": "Automation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3242, TME3242", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME2143E" + }, + { + "moduleCode": "ME3243", + "title": "Robotic System Design", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3251", + "title": "Materials For Engineers", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151", + "corequisite": "" + }, + { + "moduleCode": "ME3251E", + "title": "Materials For Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM3251, TME3251, ME2143, ME3252", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151E", + "corequisite": "" + }, + { + "moduleCode": "ME3252", + "title": "Materials for Mechanical Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME2151 Principles of Mechanical Engineering Materials\nME3251 Materials for Engineers", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3261", + "title": "Computer-Aided Design And Manufacturing", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME2162/ME3162" + }, + { + "moduleCode": "ME3261E", + "title": "Computer-Aided Design and Manufacturing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3261, TME3261", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "ME3263", + "title": "Design For Manufacturing And Assembly", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME2162/ME3162" + }, + { + "moduleCode": "ME3263E", + "title": "Design for Manufacturing and Assembly", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3263, TME3263", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "ME3281", + "title": "Microsystems Design And Applications", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3291", + "title": "Numerical Methods In Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505, MA1512 and MA1513.", + "corequisite": "" + }, + { + "moduleCode": "ME3661", + "title": "Technical Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3662", + "title": "Technical Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3663", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3991", + "title": "OOGT Exchange Elective 1", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3992", + "title": "OOGT Exchange Elective 2", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3993", + "title": "OOGT Exchange Elective 3", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME3995", + "title": "Technical Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4101", + "title": "Bachelor Of Engineering Dissertation", + "moduleCredit": 12, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "ME4101A", + "title": "Bachelor Of Engineering Dissertation", + "moduleCredit": 8, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "ME4102", + "title": "Standards in Mechanical Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2162, ME3162", + "corequisite": "" + }, + { + "moduleCode": "ME4103", + "title": "Mechanical Engineering and Society", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4105", + "title": "Specialization Study Module", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students admitted to a specialisation", + "corequisite": "" + }, + { + "moduleCode": "ME4212", + "title": "Aircraft Structures", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4213", + "title": "Vibration Theory And Applications", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4213E", + "title": "Vibration Theory & Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM3213, TME4213", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME3112E", + "corequisite": "" + }, + { + "moduleCode": "ME4214", + "title": "Vehicle Dynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME3112 – Mechanics of Machines", + "corequisite": "" + }, + { + "moduleCode": "ME4223", + "title": "Thermal Environmental Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2121", + "corequisite": "" + }, + { + "moduleCode": "ME4223E", + "title": "Thermal Environmental Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3223, TME4223", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2121E & ME3122E", + "corequisite": "" + }, + { + "moduleCode": "ME4225", + "title": "Applied Heat Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME3122", + "corequisite": "" + }, + { + "moduleCode": "ME4225E", + "title": "Applied Heat Transfer", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4225, TME4225, ME2143", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME3122E", + "corequisite": "" + }, + { + "moduleCode": "ME4226", + "title": "Energy and Thermal Systems", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2121", + "corequisite": "" + }, + { + "moduleCode": "ME4227", + "title": "Internal Combustion Engines", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4231", + "title": "Aerodynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I", + "corequisite": "" + }, + { + "moduleCode": "ME4233", + "title": "Computational Methods In Fluid Mechanics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I", + "corequisite": "" + }, + { + "moduleCode": "ME4241", + "title": "Aircraft Performance, Stability and Control", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4242", + "title": "Soft Robotics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4245", + "title": "Robot Mechanics and Control", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2142", + "corequisite": "ME2142" + }, + { + "moduleCode": "ME4245E", + "title": "Robot Mechanics and Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM4245, TME4245", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2142E for ME students\nEE2010E/EE3331E for EE students", + "corequisite": "" + }, + { + "moduleCode": "ME4246", + "title": "Modern Control System", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2142", + "corequisite": "" + }, + { + "moduleCode": "ME4247", + "title": "Introduction to Fuzzy/Neural Systems", + "moduleCredit": 0, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4251E", + "title": "Thermal Engineering Of Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM4251, TME4251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151E", + "corequisite": "" + }, + { + "moduleCode": "ME4253", + "title": "Biomaterials Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4254E", + "title": "Materials in Engineering Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM4254, TME4254", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151E", + "corequisite": "" + }, + { + "moduleCode": "ME4255", + "title": "Materials Failure", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151", + "corequisite": "" + }, + { + "moduleCode": "ME4256", + "title": "Functional Materials and Devices", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151, ME2143", + "corequisite": "" + }, + { + "moduleCode": "ME4256E", + "title": "Functional Materials and Devices", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "ME4256, TME4256", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME2151E, ME2143E", + "corequisite": "" + }, + { + "moduleCode": "ME4261", + "title": "Tool Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162" + }, + { + "moduleCode": "ME4261E", + "title": "Tool Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4261, TME4261", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "ME4262", + "title": "Automation In Manufacturing", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162" + }, + { + "moduleCode": "ME4262E", + "title": "Automation in Manufacturing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4262, TME4262", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "ME4263", + "title": "Fundamentals of Product Development", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4264", + "title": "Automobile Design & Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME 2113 – Mechanics of Materials", + "corequisite": "" + }, + { + "moduleCode": "ME4265", + "title": "Automotive Body & Chassis Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME 2113 – Mechanics of Materials", + "corequisite": "" + }, + { + "moduleCode": "ME4283E", + "title": "Micro-Fabrication Processes", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM4283, TME4283", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4291", + "title": "Finite Element Analysis", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1505 (Mathematics I)", + "corequisite": "" + }, + { + "moduleCode": "ME4661", + "title": "Exchange Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4662", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4663", + "title": "Exchange Technical Elective", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4991", + "title": "OOGT Exchange Elective 1", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4992", + "title": "OOGT Exchange Elective 2", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4993", + "title": "OOGT Exchange Elective 3", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4994", + "title": "OOGT Exchange Elective 4", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME4995", + "title": "Exchange Elective 5", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5001", + "title": "Mechanical Engineering Project", + "moduleCredit": 8, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5001A", + "title": "Mechanical Engineering Project", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5101", + "title": "Applied Stress Analysis", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5103", + "title": "Plates and Shells", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CE5512\nCE5514", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5105", + "title": "Shock and Vibration Control", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5106", + "title": "Engineering Acoustics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5107", + "title": "Vibration Theory and Applications", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5161", + "title": "Optical Techniques in Experimental Stress Analysis", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5201", + "title": "Thermal Systems Design", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5202", + "title": "Industrial Transfer Processes", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5204", + "title": "Air Conditioning and Building Automation", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5205", + "title": "Energy Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5207", + "title": "Solar Energy Systems", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5300A", + "title": "Special Project in Computation and Modelling I", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Complete at least three (3) core modules from the core module list.", + "corequisite": "" + }, + { + "moduleCode": "ME5300B", + "title": "Special Project in Computation and Modelling II", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME5300A Special Project in Computation and Modelling I", + "corequisite": "" + }, + { + "moduleCode": "ME5301", + "title": "Flow Systems Analysis", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I and ME2135 Fluid Mechanics II or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME5302", + "title": "Computational Fluid Mechanics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ME2135", + "corequisite": "" + }, + { + "moduleCode": "ME5303", + "title": "Industrial Aerodynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5304", + "title": "Experimental Fluid Mechanics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME4234", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "ME2135 Fluid Mechanics II", + "corequisite": "" + }, + { + "moduleCode": "ME5305", + "title": "Fundamentals of Aeroelasticity", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME4235", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I\nME2114 Mechanics of Materials II", + "corequisite": "" + }, + { + "moduleCode": "ME5309", + "title": "Aircraft Engines and Rocket Propulsion", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME5308", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ME2134 Fluid Mechanics I or equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME5361", + "title": "Advanced Computational Fluid Dynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5362", + "title": "Advanced Fluid Transients Computation and Modelling", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5401", + "title": "Linear Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MCH5201, EE5101/EE5101R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[Applicable to UG level students only] ME2142 or EE3331C; or\n[Advisory applicable to GD level students only] Requires background knowledge such as EE4302 or ME4246", + "corequisite": "" + }, + { + "moduleCode": "ME5402", + "title": "Advanced Robotics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MCH5209, EE5106/EE5106R", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "[Applicable to UG level students only] ME2142 or EE3331C; or\n\n[Advisory applicable to GD level students only] Requires background knowledge in linear algebra & feedback control.", + "corequisite": "" + }, + { + "moduleCode": "ME5403", + "title": "Computer Control Systems", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "EE5103/EE5103R, MCH5103, TD5241", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "([Applicable to UG level students only] EE2023 or EE3331C or ME2142); or\n([Applicable to GD level students only] Requires background knowledge such as EE2010, EE2023, EE3331C, ME2142 or equivalent).", + "corequisite": "" + }, + { + "moduleCode": "ME5404", + "title": "Neural Networks", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE5904/EE5904R, MCH5202", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5405", + "title": "Machine Vision", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5405A", + "title": "Machine Vision Fundamentals", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME5405", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Linear Algebra, Calculus", + "corequisite": "" + }, + { + "moduleCode": "ME5406", + "title": "Deep Learning for Robotics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5408", + "title": "Kinematics of Robot Manipulators", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME5402/EE5106", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Linear Algebra, Calculus", + "corequisite": "" + }, + { + "moduleCode": "ME5506", + "title": "Corrosion of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5513", + "title": "Fracture And Fatigue Of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "OT5208 Fatigue and Fracture for Offshore Structures\nME5513A Fatigue Analysis for Additive Manufacturing", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5513A", + "title": "Fatigue Analysis for Additive Manufacturing", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME 5513: Fracture and Fatigue of Materials", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5516", + "title": "Emerging Energy Conversion and Storage Technologies", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5600A", + "title": "Project in Advanced Manufacturing I", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME5608 Additive and Non-Conventional Manufacturing\nProcesses, and\nME5612 Computer Aided Product Development or\nME6505 Engineering Materials in Medicine", + "corequisite": "" + }, + { + "moduleCode": "ME5600B", + "title": "Project in Advanced Manufacturing II", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME5600A Project in Advanced Manufacturing I", + "corequisite": "" + }, + { + "moduleCode": "ME5607", + "title": "Smart Factories", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME4262 and ME4262E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5608", + "title": "Additive and Non-Conventional Manufacturing Processes", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME6605\nME5608A \nME5608B", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5608A", + "title": "Principles and Processes of Additive Manufacturing", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME5608: Additive and non-conventional manufacturing processes", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5608B", + "title": "Hybrid Manufacturing", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "ME5608: Additive and Non-Conventional Manufacturing Processes", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5609", + "title": "Rapid Response Manufacturing", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5610", + "title": "Product Development", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5611", + "title": "Sustainable Product Design & Manufacturing", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5612", + "title": "Computer Aided Product Development", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME6606", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5613", + "title": "Optimal Design of Multi-Functional Structures", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Finite Element Methods or Structural Analysis or Solid Mechanics or an equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME5614A", + "title": "Special Project in Additive Manufacturing", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Knowledge in principle of additive manufacturing; preprocessing\nand post-processing for additive manufacturing", + "corequisite": "" + }, + { + "moduleCode": "ME5615A", + "title": "Design and Pre-Processing for Additive Manufacturing", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5615B", + "title": "Post-processing for Additive Manufacturing", + "moduleCredit": 2, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME6604 Modelling of Machining Processes", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME5701", + "title": "Mathematics for Engineering Research", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "B.Eng. (Second Class Lower)", + "corequisite": "" + }, + { + "moduleCode": "ME5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6101", + "title": "Research Topics in Applied Mechanics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6102", + "title": "Topics in Applied Mechanics: Mechanics of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6103", + "title": "Optical Measurement and Quality Inspection", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6104", + "title": "Fracture Mechanics and Applications", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6105", + "title": "Continuum Mechanics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6107", + "title": "Plasticity and Inelastic Deformation", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME6105: Continuum mechanics (Pre-requisite)", + "corequisite": "" + }, + { + "moduleCode": "ME6201", + "title": "Research Topics in Thermodynamics and Heat Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6202", + "title": "Topics in Thermodynamics and Heat Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6203", + "title": "Mass Transport", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6204", + "title": "Convective Heat Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6205", + "title": "Advanced Topics in Heat and Mass Transfer", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ME5202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6301", + "title": "Research Topics in Fluid Dynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6302", + "title": "Topics in Fluid Dynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6302A", + "title": "Topics in Fluid Dynamics: Theory of Hydrodynamic Stability", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME4233 (Applicable to undergraduate students only)", + "corequisite": "" + }, + { + "moduleCode": "ME6303", + "title": "Advanced Fluid Dynamics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6304", + "title": "Turbulence in Fluid Flows", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6401", + "title": "Topics in Mechatronics 1", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6402", + "title": "Topics in Mechatronics 2", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6405", + "title": "Autonomous Mobile Robotics", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6406", + "title": "Optimization Techniques for Dynamical Systems", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6501", + "title": "Research Topics in Materials Science", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6502", + "title": "Topics in Material Sciences", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6503", + "title": "Theory of Transformations in Metals", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6504", + "title": "Defects & Dislocations in Solids", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6505", + "title": "Engineering Materials in Medicine", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6508", + "title": "Atomistic Simulations of Materials", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6601", + "title": "Research Topics in Manufacturing", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6602", + "title": "Topics in Manufacturing", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6604", + "title": "Modelling of Machining Processes", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6607", + "title": "Optimal Design of Multi-Functional Structures", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME5613", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Finite Element Methods or Structural Analysis or Solid Mechanics or an equivalent", + "corequisite": "" + }, + { + "moduleCode": "ME6701", + "title": "Topics in Mechanical Engineering Research 1", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ME6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MHR5001", + "title": "Managing Human Resources in the Asia Pacific", + "moduleCredit": 4, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MHR5002", + "title": "Applied Organisational Research", + "moduleCredit": 4, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MHR5003", + "title": "Human Resource Planning, Staffing and Retention", + "moduleCredit": 4, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MHR6006", + "title": "International Human Resource Management", + "moduleCredit": 2, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MHR6008K", + "title": "Creating and Managing Knowledge in Organisations", + "moduleCredit": 2, + "department": "NUS Business School", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MIC2000", + "title": "Infection and Immunology", + "moduleCredit": 3, + "department": "Microbiology and Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "MIC1000", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1003", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have taken EC3230/(EC2210) or CS3261/(IC3243) or PR4201 or BK2003 or BZ1003 or BH1003 are not allowed to take MKT1003.\n \nAll BSc(Real Estate) students are not allowed to take MKT1003.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1003A", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken EC3230/(EC2210) or CS3261/(IC3243) or PR4201 or BK2003 or BZ1003 or BH1003 are not allowed to take MKT1003.\n \nAll BSc(Real Estate) students are not allowed to take MKT1003.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1003B", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken EC3230/(EC2210) or CS3261/(IC3243) or PR4201 or BK2003 or BZ1003 or BH1003 are not allowed to take MKT1003.\n \nAll BSc(Real Estate) students are not allowed to take MKT1003.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1003C", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken EC3230/(EC2210) or CS3261/(IC3243) or PR4201 or BK2003 or BZ1003 or BH1003 are not allowed to take MKT1003.\n \nAll BSc(Real Estate) students are not allowed to take MKT1003.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1003D", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken EC3230/(EC2210) or CS3261/(IC3243) or PR4201 or BK2003 or BZ1003 or BH1003 are not allowed to take MKT1003.\n \nAll BSc(Real Estate) students are not allowed to take MKT1003.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1003X", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken EC3230/(EC2210) or CS3261/(IC3243) or PR4201 or BK2003 or BZ1003 or BH1003 are not allowed to take MKT1003.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1601", + "title": "Marketing Advanced Placement", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1705", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT1003; MKT1003X; RST and EMG students", + "attributes": [ + true, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1705A", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT1003; MKT1003X; RST and EMG students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1705B", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT1003; MKT1003X; RST and EMG students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1705C", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT1003; MKT1003X; RST and EMG students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1705D", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT1003; MKT1003X; RST and EMG students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT1705X", + "title": "Principles of Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT1003; MKT1003X; RST and EMG students", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT2401", + "title": "Asian Markets And Marketing Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT2401A", + "title": "Asian Markets And Marketing Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2401 or BZ3601 or BK3200 or MKT2401B or MKT2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT2401B", + "title": "Asian Markets And Marketing Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2401 or BZ3601 or BK3200 or MKT2401A or MKT2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT2401C", + "title": "Asian Markets And Marketing Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2401 or BZ3601 or BK3200 or MKT2401A or MKT2401B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT2411", + "title": "Retail Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2411 or BZ3611 or BK3204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT2412", + "title": "Global Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2412 or BZ3604 or BK3208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003", + "corequisite": "" + }, + { + "moduleCode": "MKT2413", + "title": "Marketing Research", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2413 or BZ3614 or BK3202 or MKT2413A or MKT2413B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT2414", + "title": "Marketing Venture Challenge", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have any Level 3000 or above Marketing modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT2711", + "title": "Marketing Venture Challenge", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have read or are reading any Level 3000 or above Marketing modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3401", + "title": "Marketing Strategy: Analysis and Practice", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3401A", + "title": "Marketing Strategy: Analysis and Practice", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3401B", + "title": "Marketing Strategy: Analysis and Practice", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3402", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "BH3420 or BZ3605 or BK3203 or MKT3402A or MKT3402B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3402A", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3402 or BZ3602 or BK3201 or MKT3402A or MKT3402B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3402B", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3402 or BZ3602 or BK3201 or MKT3402A or MKT3402B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3402C", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3420 or BZ3605 or BK3203 or MKT3402A or MKT3402B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3402D", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3420 or BZ3605 or BK3203 or MKT3402A or MKT3402B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3412", + "title": "Services Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3412 or BH3412A or BH3412B or BZ3612 or BK3205 or MKT3412A or MKT3412B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3412A", + "title": "Services Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3412 or BH3412A or BH3412B or BZ3612 or BK3205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3412B", + "title": "Services Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3412 or BH3412A or BH3412B or BZ3612 or BK3205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3413", + "title": "Sme Marketing Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003", + "corequisite": "" + }, + { + "moduleCode": "MKT3414", + "title": "Marketing Channels", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003", + "corequisite": "" + }, + { + "moduleCode": "MKT3415", + "title": "Marketing in a Digital Age", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003", + "corequisite": "" + }, + { + "moduleCode": "MKT3416", + "title": "Business-to-Business Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003", + "corequisite": "" + }, + { + "moduleCode": "MKT3417", + "title": "Customer Relationship Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "CS4266", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3418", + "title": "Product And Brand Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "BH3418 or BZ3603 or MKT3418A or MKT3418B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003", + "corequisite": "" + }, + { + "moduleCode": "MKT3418A", + "title": "Product and Brand Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3418 or BZ3603", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003 or TR2201.", + "corequisite": "" + }, + { + "moduleCode": "MKT3418B", + "title": "Product and Brand Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3418 or BZ3603", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003 or TR2201.", + "corequisite": "" + }, + { + "moduleCode": "MKT3420", + "title": "Advertising & Promotion Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3420A", + "title": "Promotional Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3420 or BZ3605 or BK3203 or MKT3420 or MKT3420B or IF3215 or NM3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003 or TR2201", + "corequisite": "" + }, + { + "moduleCode": "MKT3420B", + "title": "Promotional Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3420 or BZ3605 or BK3203 or MKT3420 or MKT3420A or IF3215 or NM3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or BH1003 or BZ1003 or BK2003 or TR2201", + "corequisite": "" + }, + { + "moduleCode": "MKT3421", + "title": "Marketing Analysis & Decision Making", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT3422B", + "title": "TIM: Marketing in Developing & Emerging Economies", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3761B TIM: Marketing in Developing & Emerging Economies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003/1705 Principles of Marketing\nMKT3401/3701 Marketing Strategy: Analysis & Practice", + "corequisite": "" + }, + { + "moduleCode": "MKT3422C", + "title": "TIM: Social Impact Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3761C TIM: Social Impact Marketing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003/1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3422D", + "title": "TIM: Sustainability Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3761D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003/1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3422X", + "title": "Topics in Marketing:selected Topics 1", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT3422Z", + "title": "Topics in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT3423", + "title": "Consumer Culture Theory", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT3402 Consumer Behaviour", + "corequisite": "" + }, + { + "moduleCode": "MKT3424", + "title": "Branding Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X \nMarketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3425", + "title": "Retail Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3426", + "title": "Global Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3427", + "title": "Research for Marketing Insights", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Marketing or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3428", + "title": "Wealth Management Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3429", + "title": "Independent Study in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "MKT3439", + "title": "Independent Study in Marketing", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however,\nstudents will have to have completed the core modules of\nthe BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics." + }, + { + "moduleCode": "MKT3513", + "title": "Game Theory And Strategic Analysis", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "EC3312 Game Theory and Applications To Economics\nMA4264 Game Theory", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Principles of Marketing (or TR2201 Entrepreneurial Marketing)\nBSP1005 Managerial Economics or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MKT3701", + "title": "Marketing Strategy: Analysis and Practice", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT2401; RE3704, MKT3401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3701A", + "title": "Marketing Strategy: Analysis and Practice", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT2401; RE3704.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3701B", + "title": "Marketing Strategy: Analysis and Practice", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MKT3702", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT3402", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3702A", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3402", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3702B", + "title": "Consumer Behaviour", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3402", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3711", + "title": "Services Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3412", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3712", + "title": "SME Marketing Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3413", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3713", + "title": "Marketing Channels", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3414", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3714", + "title": "Marketing in a Digital Age", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT3415", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3715", + "title": "Business-to-Business Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3416", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3716", + "title": "Customer Relationship Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3417", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3717", + "title": "Product & Brand Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3418", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3718", + "title": "Advertising & Promotion Management", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3420; NM3215.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3719", + "title": "Branding Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3424", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3720", + "title": "Retail Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT2411", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3721", + "title": "Global Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT2412", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3722", + "title": "Research for Marketing Insights", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT2413", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3751", + "title": "Independent Study in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3752", + "title": "Indep Study in Mkting (2 MC)", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3761", + "title": "Topics in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3761A", + "title": "TIM: Wealth Management Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT3422A; MKT3428.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3761B", + "title": "TIM: Marketing in Developing & Emerging Economies", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3422B TIM: Marketing in Developing & Emerging Economies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003/1705 Principles of Marketing\nMKT3401/3701 Marketing Strategy: Analysis & Practice", + "corequisite": "" + }, + { + "moduleCode": "MKT3761C", + "title": "TIM: Social Impact Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3422C TIM: Social Impact Marketing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003/1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT3761D", + "title": "TIM: Sustainability Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3422D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3761X", + "title": "Topics in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3761Y", + "title": "Topics in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3761Z", + "title": "Topics in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT3811", + "title": "Marketing Analysis & Decision Making", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT3421", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT3812", + "title": "Game Theory and Strategic Analysis", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT3513; EC3312; MA4264.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT4412", + "title": "Marketing Theory: Cultivating Critical Thinking", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X", + "corequisite": "" + }, + { + "moduleCode": "MKT4413", + "title": "Pricing Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X", + "corequisite": "" + }, + { + "moduleCode": "MKT4413A", + "title": "Pricing Models And Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH4413 or BZ4611", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X", + "corequisite": "" + }, + { + "moduleCode": "MKT4413B", + "title": "Pricing Models And Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH4413 or BZ4611", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X", + "corequisite": "" + }, + { + "moduleCode": "MKT4416", + "title": "Mktg Strategy Simulation & Case Analysis", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X", + "corequisite": "" + }, + { + "moduleCode": "MKT4417", + "title": "Consumer Decision Making", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 or MKT1003X", + "corequisite": "" + }, + { + "moduleCode": "MKT4418", + "title": "Consumer Culture Theory", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT3402 Consumer Behavior", + "corequisite": "" + }, + { + "moduleCode": "MKT4419", + "title": "Advanced Independent Study in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "MKT4420", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT2401 Asian Markets & Marketing Management", + "corequisite": "" + }, + { + "moduleCode": "MKT4421", + "title": "Marketing Practice and Impact", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMS5502/BMS5502A Marketing Practice & Impact", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003/MKT1003X/MKT1705/MKT1705X Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT4422", + "title": "The Business of Happiness", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT4718 The Business of Happiness", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT4423", + "title": "Design Thinking & Business Innovations", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT4813 Design Thinking & Business Innovations", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1003 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT4429", + "title": "Advanced Independent Study in Marketing", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics." + }, + { + "moduleCode": "MKT4712", + "title": "Marketing Theory: Cultivating Critical Thinking", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT4412", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT4713", + "title": "Marketing Strategy Simulation & Case Analysis", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MKT4416", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT4714", + "title": "Consumer Decision Making", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT4417", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(BSP1703 or BSP1707 or EC1101E or EC1301) and (MKT1705/MKT1705X or RE3704).", + "corequisite": "" + }, + { + "moduleCode": "MKT4715", + "title": "Business Strategy Simulation for Marketers", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X or RE3704.", + "corequisite": "" + }, + { + "moduleCode": "MKT4716", + "title": "Consumer Culture Theory", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MKT3423", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT3702", + "corequisite": "" + }, + { + "moduleCode": "MKT4717", + "title": "Marketing Practice and Impact", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BMS5502/BMS5502A Marketing Practice & Impact", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X", + "corequisite": "" + }, + { + "moduleCode": "MKT4718", + "title": "The Business of Happiness", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT4422 The Business of Happiness", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "MKT4751", + "title": "Advanced Independent Study in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT4752", + "title": "Advanced Independent Study in Marketing (2 MC)", + "moduleCredit": 2, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT4761", + "title": "Seminars in Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Varies according to the subject matter covered.", + "corequisite": "" + }, + { + "moduleCode": "MKT4811", + "title": "Pricing Strategy", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT4413", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X or RE3704.", + "corequisite": "" + }, + { + "moduleCode": "MKT4812", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MKT4415C; MKT4420.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705/MKT1705X or RE3704.", + "corequisite": "" + }, + { + "moduleCode": "MKT4813", + "title": "Design Thinking & Business Innovations", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT4423 Design Thinking & Business Innovations", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MKT1705 Principles of Marketing", + "corequisite": "" + }, + { + "moduleCode": "ML5198", + "title": "Graduate Seminar Module in Materials Science", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ML5201", + "title": "Principles, Technology and Properties of Thin Films", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ML5202", + "title": "Structural and Electronic Ceramics", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ML5203", + "title": "Electrochemical Techniques in Environmental Engineering", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ML5206", + "title": "Nanomaterials: Science and Engineering", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ML5208", + "title": "Mechanical Properties of Solid Films", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ML5209", + "title": "Fundamentals of Materials Science", + "moduleCredit": 4, + "department": "Materials Science", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE1001", + "title": "Materials Science & Engrg Principles & Practice I", + "moduleCredit": 6, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE1001A", + "title": "Materials Science & Engineering Principles & Practice I", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MLE1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE1002", + "title": "Materials Science & Engineering Principles & Practice II", + "moduleCredit": 6, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE1010", + "title": "Materials Engineering Principles & Practices", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE1101", + "title": "Introductory Materials Science And Engineering", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "Mechanical Engineering students", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Physics or H1 Physics or H2 Physics or [PC1221 and PC1222]", + "corequisite": "" + }, + { + "moduleCode": "MLE1111", + "title": "Foundation Materials Science and Engineering I", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MLE1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Physics or H1 Physics or H2 Physics or [PC1221 and PC1222]", + "corequisite": "" + }, + { + "moduleCode": "MLE1112", + "title": "Foundation Materials Science and Engineering 2", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MLE1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Physics or H1 Physics or H2 Physics or [PC1221 and PC1222]", + "corequisite": "" + }, + { + "moduleCode": "MLE2001", + "title": "Materials Science & Engineering Principles & Practice II", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MLE1002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE2101", + "title": "Introduction to Structure of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Physics or H1 Physics or H2 Physics or [PC1221 and PC1222] or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE2102", + "title": "Thermodynamics and Phase Diagrams", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level Physics or H1 Physics or H2 Physics or [PC1221 and PC1222] or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE2103", + "title": "Phase Transformation and Kinetics", + "moduleCredit": 3, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2102 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE2104", + "title": "Mechanical Properties of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109 or MLE1101 or MLE2101 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE2105", + "title": "Electronic Properties of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1001 or MLE1002 or MLE1101 or MLE2101 or MLE1111", + "corequisite": "" + }, + { + "moduleCode": "MLE2106", + "title": "Metallic Materials and Processing", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE2101 or MLE2104 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE2107", + "title": "Ceramic Materials and Processing", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE2101 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE2111", + "title": "Materials Properties Laboratory", + "moduleCredit": 3, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE1111 or A Level Physics or H1 Physics or\nH2 Physics or [PC1221 and PC1222] or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE3101", + "title": "Materials Characterization Laboratory", + "moduleCredit": 3, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE2101 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE3102", + "title": "Degradation and Failure of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE2102 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE3103", + "title": "Materials Design and Selection", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE2104 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE3104", + "title": "Polymeric and Composite Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or CM1121 or CM1501 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE3105", + "title": "Dielectric and Magnetic Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2105", + "corequisite": "" + }, + { + "moduleCode": "MLE3111", + "title": "Materials Properties & Processing Laboratory", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1002 or MLE2101 or MLE2111 or MLE1001", + "corequisite": "" + }, + { + "moduleCode": "MLE3202", + "title": "Materials for Biointerfaces", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1101 or MLE1111 or MLE1001 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE3203", + "title": "Engineering Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "MLE2106 Metallic Materials & Processing\nMLE2107 Ceramic Materials & Processing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE1111 or MLE1001 or MLE2102 or MLE1002", + "corequisite": "" + }, + { + "moduleCode": "MLE4101", + "title": "B.Eng. Dissertation", + "moduleCredit": 12, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "MLE4101A or MLE4101N", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "MLE2103 and MLE2104 and MLE2105 and MLE3101", + "corequisite": "" + }, + { + "moduleCode": "MLE4101A", + "title": "BEng Dissertation", + "moduleCredit": 6, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MLE4101 or MLE4101N", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2103 and MLE2104 and MLE3101", + "corequisite": "" + }, + { + "moduleCode": "MLE4101R", + "title": "Integrated B.ENG./B.SC. (Hons) Dissertation", + "moduleCredit": 16, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "MLE2103 and MLE2104 and MLE2105 and MLE3101", + "corequisite": "" + }, + { + "moduleCode": "MLE4102", + "title": "Design Project", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2103", + "corequisite": "" + }, + { + "moduleCode": "MLE4102A", + "title": "Design Project", + "moduleCredit": 8, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "MLE4102", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "MLE1002 and MLE2104 and MLE3111", + "corequisite": "" + }, + { + "moduleCode": "MLE4201", + "title": "Advanced Materials Characterisation", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE3101", + "corequisite": "" + }, + { + "moduleCode": "MLE4202", + "title": "Selected Advanced Topics on Polymers", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE3104", + "corequisite": "" + }, + { + "moduleCode": "MLE4203", + "title": "Polymeric Biomedical Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE3104 and (BN3301 or MLE3202)", + "corequisite": "" + }, + { + "moduleCode": "MLE4204", + "title": "Synthesis And Growth Of Nanostructures", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2101", + "corequisite": "" + }, + { + "moduleCode": "MLE4205", + "title": "Theory and Modelling of Materials Properties", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2101", + "corequisite": "" + }, + { + "moduleCode": "MLE4206", + "title": "Current topics on Nanomaterials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2104 and MLE2105", + "corequisite": "" + }, + { + "moduleCode": "MLE4207", + "title": "Microfabrication Process and Technology", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "EE4436 Semiconductor Process Technology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2101 and MLE2105", + "corequisite": "" + }, + { + "moduleCode": "MLE4208", + "title": "Photovoltaics Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2105 or EE3406 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "MLE4209", + "title": "Magnetism and Magnetic Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE3105 or other equivalent modules", + "corequisite": "" + }, + { + "moduleCode": "MLE4210", + "title": "Materials for energy storage and conversion", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2105", + "corequisite": "" + }, + { + "moduleCode": "MLE4211", + "title": "Nanoelectronics and information technology", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE4212", + "title": "Advanced Structural Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE3102 or MLE3203 or MLE2106.", + "corequisite": "" + }, + { + "moduleCode": "MLE4213", + "title": "Innovation & Product Development for Material Engineers", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MLE2104 Mechanical Properties of Materials", + "corequisite": "" + }, + { + "moduleCode": "MLE5001", + "title": "Basics of Structures & Properties of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MST5001", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5002", + "title": "Materials Characterization", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "MST5002", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5003", + "title": "Materials Science &Engineering Project", + "moduleCredit": 8, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "MST5007", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5004", + "title": "Innovation & Translation Research Project in MSE", + "moduleCredit": 8, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5102", + "title": "Mechanical Behaviours of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5104", + "title": "Physical Properties of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5206", + "title": "Nanomaterials: Science and Engineering", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5210", + "title": "Modelling and Simulation of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MLE4205 Theory & Modelling of Material Properties", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5211", + "title": "Nanomaterials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MLE4206 Current topics on Nanomaterials", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5212", + "title": "Energy Conversion & Storage", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MLE4210 Materials for Energy Storage and Conversion", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5213", + "title": "Magnetic Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MLE4209 Magnetism and Magnetic Materials", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5214", + "title": "Advances in Polymeric Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MLE4202 Selected advanced Topics on Polymers", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5215", + "title": "Atomistic Modelling of Molecules and Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5301", + "title": "Metallic & Ceramic Materials in Additive Manufacturing", + "moduleCredit": 2, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5302", + "title": "Polymer Materials in Additive Manufacturing", + "moduleCredit": 2, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5303", + "title": "Failure Analysis in Electronic Device", + "moduleCredit": 2, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5304", + "title": "Introduction to Electron Microscopy of Materials", + "moduleCredit": 2, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5666", + "title": "Industrial Attachment Module", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE6101", + "title": "Thermodynamics and Kinetics of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE6103", + "title": "Structures of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE6205", + "title": "Magnetic Materials and Applications", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE6206", + "title": "Nanomaterials: Science and Engineering", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MLE6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MMT6005", + "title": "Technopreneurship", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001A", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001B", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001C", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001D", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001E", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1001X", + "title": "Management And Organisation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have taken BE2106, EG1423, CS1303, BK2002 or BZ1001 or BH1001 are not allowed to take MNO1001. Students who took or are taking HR2001, HR2101, HR3111 or HR3308 cannot take MNO1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1311", + "title": "Business Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706A", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706B", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706C", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706D", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706E", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO1706X", + "title": "Organisational Behavior", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO1001; MNO1001X; PL3239", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO2007", + "title": "Leadership and Ethics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "MNO2007A", + "title": "Leadership and Ethics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "MNO2007B", + "title": "Leadership and Ethics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "MNO2007C", + "title": "Leadership and Ethics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "MNO2007D", + "title": "Leadership and Ethics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "MNO2007E", + "title": "Leadership and Ethics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization", + "corequisite": "" + }, + { + "moduleCode": "MNO2009", + "title": "Entrepreneurship", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO2302", + "title": "Human Resource Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2302 or BZ3504 or BK3300 or MNO2302A/B or PL3239 or PS3245", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or BH1001 or BZ1001 or BK2002 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO2311", + "title": "Leadership In Organisations", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH2311 or BZ2002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or BH1001 or BZ1001 or BK2002 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO2312", + "title": "Interpersonal Relations & Effectiveness", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "HR2002 Human Capital in Organizations", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "MNO1001 Management and Organisation" + }, + { + "moduleCode": "MNO2705", + "title": "Leadership and Decision Making under Uncertainty", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO2705A", + "title": "Leadership and Decision Making under Uncertainty", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO2705B", + "title": "Leadership and Decision Making under Uncertainty", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO2705C", + "title": "Leadership and Decision Making under Uncertainty", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO2705D", + "title": "Leadership and Decision Making under Uncertainty", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO2705E", + "title": "Leadership and Decision Making under Uncertainty", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO2706", + "title": "Business Communication for Leaders (ACC)", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "ES2002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who are required to read ES1000 Basic English must pass it before taking MNO2706", + "corequisite": "" + }, + { + "moduleCode": "MNO3301", + "title": "Organisational Behaviour", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "BH3301 or BZ3501 or BK3309M or PS3243", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or BH1001 or BZ1001 or BK2002 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO3303", + "title": "Organisational Effectiveness", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3303 or BZ3502 or BK4309D or BK3309N", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or BH1001 or BZ1001 or BK2002 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO3311", + "title": "Managing Diversity In S.E.Asia", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP1001 Career Planning & Preparation or NCC1001 Headstart Module (A Career Development Programme) or NCC1000 Stepup Module (A Career Development Programme) or CFG1001 Headstart Module or CFG1000 StepUp Module; students must have completed 3 regular semesters of study, have declared YY as first major and have completed a minimum of 32 MCs in YY major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "MNO3312", + "title": "Organisational Communication", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP1001 Career Planning & Preparation or NCC1001 Headstart Module (A Career Development Programme) or NCC1000 Stepup Module (A Career Development Programme) or CFG1001 Headstart Module or CFG1000 StepUp Module; students must have completed 3 regular semesters of study, have declared YY as first major and have completed a minimum of 32 MCs in YY major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "MNO3313", + "title": "Topics in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO3313F", + "title": "TIMHC:Managing High Performance Teams", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3313F or BZ3503 or BK3305 or SWD5290", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or BH1001 or BZ1001 or BK2002 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO3313H", + "title": "TIHMC: Negotiations and Bargaining", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001", + "corequisite": "" + }, + { + "moduleCode": "MNO3313J", + "title": "TILHCM: Employee and Organizational Misbehaviours", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001: Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO3313K", + "title": "TILHCM: Managing China Venture", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 – Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO3313X", + "title": "Topics in Management and Organisation:selected Topics", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3313Y", + "title": "Topics in Management and Organisation:selected Topics 3", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3313Z", + "title": "Topics in Management & Organisation:management 3", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3314", + "title": "Social And Ethical Issues In Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "PH2218", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001/HR2001/HR2101/HR3111/HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO3315", + "title": "Legal Issues in Employee Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3316", + "title": "Managing An International Workforce", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 and MNO2302", + "corequisite": "" + }, + { + "moduleCode": "MNO3317", + "title": "Advanced Leadership", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO3325 CEOs as Leaders", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization\nMNO2007 Leadership and Ethics", + "corequisite": "" + }, + { + "moduleCode": "MNO3318", + "title": "Creativity and Innovation Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO3319", + "title": "Power and influence in Organizations", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GEK1047 Organizational Power and Culture", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation\nMNOMNO2007 Leadership and Ethics", + "corequisite": "" + }, + { + "moduleCode": "MNO3320", + "title": "Managing Change", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3313A or BZ3503 or BK3305", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management & Organisation and MNO2007 Leadership and Ethics\nNote: Students who are matriculated before AY2009/2010, need NOT read MNO2007 as a pre-requisite for this MNO module.", + "corequisite": "" + }, + { + "moduleCode": "MNO3321", + "title": "Training and Development", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BH3313C or BZ3503 or BK3305 or SW5254", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management & Organisation and MNO2007 Leadership and\nEthics.", + "corequisite": "" + }, + { + "moduleCode": "MNO3322", + "title": "Negotiations and Bargaining", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706 Organizational Behaviour and\nMNO2705 Leadership and Decision Making Under Uncertainty", + "corequisite": "" + }, + { + "moduleCode": "MNO3323", + "title": "Management of Employee Relations", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management & Organisation and MNO2007 Leadership and Ethics\nNote: Students who are matriculated before AY2009/2010, need NOT read MNO2007 as a pre-requisite for this MNO module.", + "corequisite": "" + }, + { + "moduleCode": "MNO3325", + "title": "CEOs as Leaders", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO3317 Advanced Leadership", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization\nMNO2007 Leadership and Ethics", + "corequisite": "" + }, + { + "moduleCode": "MNO3326", + "title": "Personal Leadership Development", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organization\nMNO2007 Leadership and Ethics", + "corequisite": "" + }, + { + "moduleCode": "MNO3328", + "title": "Business Leadership Case Analysis", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management & Organization\nMNO2007 Leadership and Ethics", + "corequisite": "" + }, + { + "moduleCode": "MNO3329", + "title": "Independent Study in Leadership & Human Capital Mgmt", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "MNO3330", + "title": "Social Entrepreneurship", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3331", + "title": "Business with a Social Conscience", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3332", + "title": "Leading Groups and Teams", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "PL 3235 or PL3239" + }, + { + "moduleCode": "MNO3333", + "title": "Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO2302", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001/MNO1001X and MNO2007", + "corequisite": "" + }, + { + "moduleCode": "MNO3334", + "title": "Principles of Global Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MNO3716 Principles of Global Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3339", + "title": "Independent Study in Leadership & Human Capital Mgmt", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO3701", + "title": "Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO2302, MNO3333", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3702", + "title": "Negotiation and Conflict Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "MNO3322", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3703", + "title": "Leading in the 21st Century", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3711", + "title": "Managing Change", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO3320", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3712", + "title": "Training and Development", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO3321", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3713", + "title": "Management of Employee Relations", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MNO3323", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3714", + "title": "Business with a Social Conscience", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MNO3331", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3715", + "title": "Leading Groups and Teams", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MNO3332", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "PL 3235 or PL3239" + }, + { + "moduleCode": "MNO3716", + "title": "Principles of Global Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MNO3334 Principles of Global Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO3751", + "title": "Independent Study in Leadership & Human Capital Mgmt", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3752", + "title": "Independent Study in Leadership & Human Capital Mgmt (2 MC)", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3761", + "title": "Topics in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3761A", + "title": "TILHCM: Employee and Organizational Misbehaviours", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MNO3313J", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3761B", + "title": "TILHCM: Managing China Venture", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO3313K", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3761X", + "title": "Topics in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3761Y", + "title": "Topics in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3761Z", + "title": "Topics in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO3811", + "title": "Social Entrepreneurship", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MNO3330", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO4312", + "title": "Research Methods In Management And Organisations", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "SC5101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001/HR2001/HR2101/HR3111/HR3308 and ST1131A/ST1131/ST1232/MA2216/ST2131/ST2334/EE2003/ME2491", + "corequisite": "" + }, + { + "moduleCode": "MNO4313", + "title": "Seminars in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001. Additional pre-requisites may apply depending on the specific modules offered", + "corequisite": "" + }, + { + "moduleCode": "MNO4313B", + "title": "SIMHC: Culture and Management in Asia", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO4313C", + "title": "SILHCM: Compensation and Performance Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO4313D", + "title": "SILHCM: Corp Entrepreneurship & Busi Model Evaluation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO4313E", + "title": "SIMHC: Managerial and Organisational Cognition", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 or HR2001 or HR2101 or HR3111 or HR3308", + "corequisite": "" + }, + { + "moduleCode": "MNO4313G", + "title": "SIMHC: SME Consulting", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO4313H", + "title": "SILHCM: Job Attitudes", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO4313J", + "title": "SILHCM: Talent Development and Performing with Impact", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706 / MNO1706X Organizational Behaviour", + "corequisite": "" + }, + { + "moduleCode": "MNO4313X", + "title": "Seminars in Management and Human Capital (SIMHC)", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MNO4314", + "title": "Consulting to Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organisation and MNO2007 Leadership and\nEthics.", + "corequisite": "" + }, + { + "moduleCode": "MNO4314A", + "title": "Seminar in M&O: Consulting to Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO4313F, MNO4314, MNO4314B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001, MNO2007", + "corequisite": "" + }, + { + "moduleCode": "MNO4314B", + "title": "Seminar in M&O: Consulting to Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO4313F, MNO4314, MNO4314A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001, MNO2007", + "corequisite": "" + }, + { + "moduleCode": "MNO4315", + "title": "Global Management of Asian Multinationals", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management & Organisation", + "corequisite": "" + }, + { + "moduleCode": "MNO4316", + "title": "Experiencing Work: Effects on Behavior and Well-Being", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1001 Management and Organizational Behaviour", + "corequisite": "" + }, + { + "moduleCode": "MNO4319", + "title": "Adv Independent Study in Leadership & Human Capital Mgt", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "MNO4329", + "title": "Adv Independent Study in Leadership & Human Capital Mgt", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "Vary according to project topics." + }, + { + "moduleCode": "MNO4711", + "title": "Consulting to Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "MNO4314", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4712", + "title": "Experiencing Work: Effects on Behaviour & Well-Being", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MNO4316", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4713", + "title": "Leading Across Borders", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4714", + "title": "Developing Impactful Social Sector Solutions", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4751", + "title": "Adv Independent Study in Leadership & Human Capital Mgt", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum.", + "corequisite": "" + }, + { + "moduleCode": "MNO4752", + "title": "Adv Independent Study in Leadership & Human Capital Mgt (2 MC)", + "moduleCredit": 2, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Vary according to project topic. In general, however, students will have to have completed the core modules of the BBA/BBA(Acc) curriculum", + "corequisite": "" + }, + { + "moduleCode": "MNO4761", + "title": "Seminars in Leadership and Human Capital Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4761A", + "title": "SILHCM: Compensation and Performance Management", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO4313C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4761B", + "title": "SILHCM: Job Attitudes", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "MNO4313H", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MNO4761C", + "title": "SILHCM: Talent Development and Performing with Impact", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706 / MNO1706X Organizational Behaviour", + "corequisite": "" + }, + { + "moduleCode": "MNO4861C", + "title": "SILHCM: Corp Entrepreneurship & Busi Model Evaluation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "MNO4313D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MNO1706/MNO1706X or PL3239.", + "corequisite": "" + }, + { + "moduleCode": "MS1102E", + "title": "Understanding the Contemporary Malay World", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MS1101E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS2210", + "title": "Malay Culture & Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS2211", + "title": "Criticism in Modern Malay Literature", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS2212", + "title": "Law and Malay Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS2213", + "title": "Malay Families and Households", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS2215", + "title": "The Malays in History", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS2216", + "title": "Fieldwork in Studies of Malay Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MS1102E", + "corequisite": "" + }, + { + "moduleCode": "MS3209", + "title": "The Malays of Singapore", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA3203", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3210", + "title": "Modern Indonesian Literature", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3211", + "title": "Political Culture of the Malays", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3212", + "title": "Text and Ideology in the Malay World", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3213", + "title": "Ideology & Ideas on Malay Development", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3215", + "title": "Malays and Modernization", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3216", + "title": "Gender and Islam", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3217", + "title": "Political Economy, Ethnicity, Religion", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3218", + "title": "The Religious Life of the Malays", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "MS4203 The Religious life of the Malays", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS3550", + "title": "Malay Studies Internship", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "Any other XX3550 internship modules(Note: Students who change major may not do a\nsecond internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to Malay Studies Major students only. Students should have completed a minimum of 24 MC in Malay Studies; and have declared Malay Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "MS4101", + "title": "Theory and Practice in Malay Studies", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in MS, or 28 MCs in SC, or 28 MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in MS, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4201", + "title": "Social Change in the Malay World 1900-1965", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed at least 80MCs including 28MC in MS or 28 MCs in HY or 28MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed at least 80MCs including 28MC in MS or 28 MCs in HY or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4202", + "title": "Malay Society in 19th Century", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed at least 80MCs including 28MC in MS or 28 MCs in HY or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed at least 80MCs including 28MC in MS or 28 MCs in HY, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4204", + "title": "The Malay Middle Class", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in MS or 28MCs in SN or 28MCs in SC or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.2 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in MS or 28MCs in SN or 28MCs in SC, with a minimum CAP of 3.2 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4207", + "title": "Malay Film", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4208", + "title": "Syariah Law in Southeast Asia", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "MS3219", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs including 28 MCs in MS, with a minimum CAP of 3.2 or be in the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs including 28 MCs in MS or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.2 or be in the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "MS4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs including 60 MCs of MS major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of MS major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "MS4660", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "MS4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in MS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in MS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "MS4880", + "title": "Topics in Malay Studies", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4880A", + "title": "Orientations in Muslim Resurgence Movements", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in MS or 28MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4880B", + "title": "Malays Encountering Globalization: Culture and Identity", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in MS or 28MCs in SC or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS4880C", + "title": "Topics in Malay Narrative Art Forms", + "moduleCredit": 5, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "MS5101", + "title": "Social Science and Malay Studies", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS5201", + "title": "Critiques in Malay Studies", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MS6660", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6101", + "title": "Social Science Theories and Malay Studies", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6102", + "title": "Critiques in Malay Studies", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6201", + "title": "Literature and Art in Malay Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6202", + "title": "Elite and Intellectuals in Malay Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6203", + "title": "Religion and Modernisation", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6205", + "title": "Approaches to Islam, Politics and Social Change", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MS6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MST5001", + "title": "Structures And Properties Of Materials", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MST5002", + "title": "Materials Characterisation", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MST5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Materials Science and Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT2001", + "title": "Experiencing Engineering Leadership", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Engineering students only", + "corequisite": "" + }, + { + "moduleCode": "MT3001", + "title": "Systems Thinking and Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT4001", + "title": "Innovation and Entrepreneurial Strategy", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT4002", + "title": "Technology Management Strategy", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT4003", + "title": "Engineering Product Development", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "[TR3001 New Product Development] & [EE3031 Innovations & Enterprise 1]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5001", + "title": "IP Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5002", + "title": "Management of Industrial R&D", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5003", + "title": "Creativity and Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5004", + "title": "User-Centred Engineering & Product Development", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5005", + "title": "IP Law For Engineers and Scientists", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5006", + "title": "Strategic & New Product Development", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5006A New Product Development Process & MT5006B New Product Development and Corporate Strategy", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5006A", + "title": "New Product Development Process", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5006 Strategic and New Product Development", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5006B", + "title": "New Product Development and Corporate Strategy", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5006 Strategic and New Product Development", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5007", + "title": "Management of Technological Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "MT5007A Types and Patterns of Technological Innovation & MT5007B Technological Innovation Strategies", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5007A", + "title": "Types and Patterns of Technological Innovation", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5007 Management of Technological Innovation", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5007B", + "title": "Technological Innovation Strategies", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5007 Management of Technological Innovation", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5008", + "title": "Corporate Entrepreneurship", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "BMA5404 Entrepreneurship & Innovation, MT5008A Corporate Venture Creation and MT5008B Collaborative Corporate Entrepreneurship", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5008A", + "title": "Corporate Venture Creation", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5008 Corporate Entrepreneurship", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5008B", + "title": "Collaborative Corporate Entrepreneurship", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5008 Corporate Entrepreneurship", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5009", + "title": "Analyzing Hi-Technology Opportunities", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5010", + "title": "Technology Forecasting & Intelligence", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT5010A Technological Intelligence & MT5010B Intellectual Property Strategies to Support Technological Intelligence", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5010A", + "title": "Technology Intelligence Process and Methods", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT5010 Technology Forecasting & Intelligence", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5010B", + "title": "Technology Intelligence with IP Strategies", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT5010 Technology Forecasting & Intelligence", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5011", + "title": "Engineering Business Finance Fundamentals", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5012", + "title": "Marketing of High-Technology Products and Innovations", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5013", + "title": "Global Innovation Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "None, but having taken “MT5007 Management of Technological\nInnovation” is desirable.", + "corequisite": "" + }, + { + "moduleCode": "MT5014", + "title": "Systems Approach to Tech and Innov Mgt", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5015", + "title": "The Financial and Business Aspects of Intellectual Property (IP)", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "There are no pre-requisites. But it would be beneficial to the students to have taken the following modules/ programmes:\n�� IP Management (MT5001)\n�� Any foundation-level programme on IP (basics, principles, general application)", + "corequisite": "" + }, + { + "moduleCode": "MT5016", + "title": "Business Models for Hi-Tech Products", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5017", + "title": "Integrative Design Thinking Workshop", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5018", + "title": "Managing and Organizing Open Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5020", + "title": "Managing the Human elements of Technology Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5020A", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5020A", + "title": "Human Aspects of Technological Innovation", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "MT5020 Managing the Human elements of Technology Management", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5021", + "title": "Problem Solving Skills for Engineering Managers", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5022", + "title": "Digital Disruption and Technology Strategy", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5023", + "title": "Technology-Based Entrepreneurial Strategy", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT4001 Innovation and Entrepreneurial Strategy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5024", + "title": "Patent Data Analytics for Innovation Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5666", + "title": "Industrial Attachment", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5766", + "title": "Technology Management Internship", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "MT5966 Overseas Industrial Project and Attachment (12 MC),\nMT5866 Industrial Project and Attachment (12MC),\nMT5666 Industrial Attachment (4 MC)\nMT5900 MOT Research Project (8 MC)\nMT5901 Management Practicum (2 MC)\nMT5902 Management Extended Practicum (4 MC)\nMT5903 Technological Innovation Management Practicum (2 MC)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5866", + "title": "Industrial Project and Attachment", + "moduleCredit": 12, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "MT5966 Overseas Industrial Project and Attachment (12 MC)\nMT5666 Industrial Attachment (4 MC)\nMT5900 MOT Research Project (8 MC)\nMT5901 Management Practicum (2 MC)\nMT5902 Management Extended Practicum (4 MC)\nMT5903 Technological Innovation Management Practicum (2 MC)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5880", + "title": "Topics in Management of Technology", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Case by case basis. For AY09/10, a basic understanding\nof economics and numerical analysis is needed.", + "corequisite": "Case by case basis. For AY09/10, there are no" + }, + { + "moduleCode": "MT5880A", + "title": "Topics in Management of Technology - Techno-Economics Systems", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "Case by case basis. For AY09/10, there are no preclusions.", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Case by case basis. For AY09/10, a basic understanding of economics and numerical analysis is needed.", + "corequisite": "" + }, + { + "moduleCode": "MT5880B", + "title": "Topics in Management of Technology - Institutional Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Basic understanding of economics and management of technology.", + "corequisite": "" + }, + { + "moduleCode": "MT5880C", + "title": "Topics in MOT - Disruptive Technologies and Value Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5900", + "title": "Mot Research Project", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "MT5910 LaunchPad: Experiential Entrepreneurship, SDM5990 SDM Research Project & MT5903 Technological Innovation Management Practicum", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5901", + "title": "Management Practicum", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5902", + "title": "Management Extended Practicum", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5903", + "title": "Technological Innovation Management Practicum", + "moduleCredit": 2, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "MT5900 MOT Research Project\nSDM5990 SDM Research Project", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5910", + "title": "LaunchPad: Experiential Entrepreneurship", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "MT5900 MOT Research Project\nSDM5990 SDM Research Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5911", + "title": "Venture Funding", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "Candidate must demonstrate strong interest and passion in entrepreneurship" + }, + { + "moduleCode": "MT5912", + "title": "Frugal Innovation", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "Product development courses are a plus", + "corequisite": "" + }, + { + "moduleCode": "MT5913", + "title": "TechLaunch - Experiential Entrepreneurship", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5920", + "title": "Enterprise Development", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5921", + "title": "Market Gaps - A Search for Innovation Opportunities", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5966", + "title": "Overseas Industrial Project and Attachment", + "moduleCredit": 12, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT5666 Industrial Attachment (8 MC), MT5900 MOT Research Project (8MC), MT5901 Management Practicum (2MC), MT5902 Management Extended Practicum (4MC)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT6001", + "title": "Research in Tech & Innovation Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MT6999", + "title": "Doctoral Seminars", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MTM5005", + "title": "Intermodal Freight Transport and Logistics", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1101", + "title": "Composition Major Study 1A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1102", + "title": "Composition Major Study 1B", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1101 Composition Major Study 1A", + "corequisite": "" + }, + { + "moduleCode": "MUA1103", + "title": "Composition Seminar 1A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1104", + "title": "Composition Seminar 1B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1105", + "title": "Music Technology", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1107", + "title": "Large Ensembles 1A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1108", + "title": "Large Ensembles 1B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1109", + "title": "Foundations for String Chamber Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1110", + "title": "Chamber Ensemble 1B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1111", + "title": "Piano Ensemble 1A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1112", + "title": "Piano Ensemble 1B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1113", + "title": "Desktop Music Production", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1114", + "title": "Introduction to Electronic Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1115", + "title": "Foundations of Vocal Accompaniment / Sight-Reading", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1116", + "title": "Foundations of Instrumental Accompaniment", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1117", + "title": "Piano Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1118", + "title": "First Year Brass Class B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1119", + "title": "Conservatory Strings 1A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1120", + "title": "Conservatory Strings 1B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1121", + "title": "Conservatory Chamber Winds 1A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1122", + "title": "Conservatory Chamber Winds 1B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1123", + "title": "Bassoon Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1124", + "title": "Bassoon Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1125", + "title": "Clarinet Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1126", + "title": "Clarinet Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1127", + "title": "Flute Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1128", + "title": "Flute Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1129", + "title": "Oboe Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1130", + "title": "Oboe Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1131", + "title": "French Horn Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1132", + "title": "French Horn Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1133", + "title": "Trombone Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1134", + "title": "Trombone Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1135", + "title": "Trumpet Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1136", + "title": "Trumpet Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1137", + "title": "Tuba Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1138", + "title": "Tuba Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1139", + "title": "Violin Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1140", + "title": "Violin Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1141", + "title": "Viola Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1142", + "title": "Viola Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1143", + "title": "Violoncello Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1144", + "title": "Violoncello Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1145", + "title": "Double Bass Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1146", + "title": "Double Bass Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1147", + "title": "Percussion Major Study 1A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1148", + "title": "Percussion Major Study 1B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1149", + "title": "Practical Skills for the Versatile Percussionist A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1150", + "title": "Practical Skills for the Versatile Percussionist B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1180 Basic Mechanics of Percussion A (BMPC-A)", + "corequisite": "" + }, + { + "moduleCode": "MUA1151", + "title": "First Year Jury", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1151A", + "title": "Jury 1A", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1153", + "title": "Noon Recital Series 1A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1154", + "title": "Noon Recital Series 1B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1155", + "title": "First Year Woodwinds Class A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1156", + "title": "First Year Woodwinds Class B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1180 First Year Woodwinds Class A", + "corequisite": "" + }, + { + "moduleCode": "MUA1157", + "title": "Solfege 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YST students from Year 1 to Year 3 students, Year 4 students by permission only.", + "corequisite": "" + }, + { + "moduleCode": "MUA1158", + "title": "Solfege 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1123", + "corequisite": "" + }, + { + "moduleCode": "MUA1161", + "title": "Foundational Studies on Principal Instrument", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1162", + "title": "Juried Performance Presentation", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1163", + "title": "The Profession of Music 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1164", + "title": "Recording as Creative Practice", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1165", + "title": "Music and Machines", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1166", + "title": "Introduction to Computing Media in Max", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1167", + "title": "The Profession of Music 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1170", + "title": "Fundamentals of Music Production and Recording 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1171", + "title": "Fundamentals of Music Production and Recording 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1170 Fundamental Music Production and Recording 1", + "corequisite": "" + }, + { + "moduleCode": "MUA1172", + "title": "Critical Listening 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1173", + "title": "Critical Listening 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1180", + "title": "First Year Brass Class A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1181", + "title": "First Year Brass Class B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1180 First Year Brass Class A", + "corequisite": "" + }, + { + "moduleCode": "MUA1190", + "title": "Applied Voice Major Study 1A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1191", + "title": "Applied Voice Major Studies 1B", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 1190 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA1192", + "title": "Chamber Singers 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open to Voice Majors", + "corequisite": "" + }, + { + "moduleCode": "MUA1193", + "title": "Chamber Singers 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1196", + "title": "Diction for Singers 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1201", + "title": "Rudiments of Musicianship", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1223", + "title": "Desktop Mixing Production", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA1270", + "title": "Interdisciplinary Electronic Arts Survey", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2101", + "title": "Composition Major Study 2A", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1102 Composition Major Study 1B", + "corequisite": "" + }, + { + "moduleCode": "MUA2102", + "title": "Composition Major Study 2B", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2101 Composition Major Study 2A", + "corequisite": "" + }, + { + "moduleCode": "MUA2103", + "title": "Composition Seminar 2A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2104", + "title": "Composition Seminar 2B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2105", + "title": "Introduction To Computer Music 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1114", + "corequisite": "" + }, + { + "moduleCode": "MUA2106", + "title": "Introduction To Computer Music 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2105", + "corequisite": "" + }, + { + "moduleCode": "MUA2107", + "title": "Large Ensembles 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2108", + "title": "Large Ensembles 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2109", + "title": "Chamber Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "MUA1116", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2110", + "title": "Chamber Music in Mixed Ensemble", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "MUA1116", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2111", + "title": "Keyboard Literature I", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2112", + "title": "Keyboard Literature II", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2113", + "title": "Keyboard Skills For Piano Majors I", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2114", + "title": "Keyboard Skills For Piano Majors Ii", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2115", + "title": "Accompanying / Sight Reading A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2116", + "title": "Accompanying B/Sight Reading", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2117", + "title": "Piano Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2118", + "title": "Orchestral Repertoire for Brass 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2120", + "title": "Orchestral Repertoire for Double Bass 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2119 Orchestral Repertoire for Double Bass 2A", + "corequisite": "" + }, + { + "moduleCode": "MUA2121", + "title": "Conservatory Chamber Winds 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2122", + "title": "Conservatory Chamber Winds 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2123", + "title": "Bassoon Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2124", + "title": "Bassoon Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2125", + "title": "Clarinet Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2126", + "title": "Clarinet Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2128", + "title": "Orchestral Repertoire for Woodwinds 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2127 Orchestral Repertoire for Woodwinds 2A", + "corequisite": "" + }, + { + "moduleCode": "MUA2129", + "title": "Oboe Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2130", + "title": "Orchestral Repertoire for Percussion 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2131", + "title": "Contemporary Music Performance", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2135", + "title": "Trumpet Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2136", + "title": "Trumpet Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2139", + "title": "Violin Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2140", + "title": "Violin Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2141", + "title": "Viola Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2142", + "title": "Viola Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2143", + "title": "Violoncello Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2144", + "title": "Violoncello Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2145", + "title": "Double Bass Major Study 2A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2146", + "title": "Double Bass Major Study 2B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2151", + "title": "Second Year Jury", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2151A", + "title": "Jury 2A", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2153", + "title": "Noon Recital Series 2A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2154", + "title": "Noon Recital Series 2B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2155", + "title": "Collaborative Piano Studies", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2156", + "title": "Collaborative Piano Studies", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2161", + "title": "Advanced Juried Performance Presentation", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2162", + "title": "Continuing Studies on Principal Instrument", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2163", + "title": "Leading and Guiding Through Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "MUA1167 The Profession of Music 2 or a successful interview", + "corequisite": "" + }, + { + "moduleCode": "MUA2170", + "title": "Multitrack Recording 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic Recording 2", + "corequisite": "" + }, + { + "moduleCode": "MUA2171", + "title": "Multitrack Recording 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Multitrack Recording 1", + "corequisite": "" + }, + { + "moduleCode": "MUA2172", + "title": "Room Acoustics", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "4th year standing", + "corequisite": "" + }, + { + "moduleCode": "MUA2173", + "title": "Acoustics and Psychoacoustics", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic Recording 2", + "corequisite": "" + }, + { + "moduleCode": "MUA2174", + "title": "Musical Acoustics", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acoustics and Psychoacoustics", + "corequisite": "" + }, + { + "moduleCode": "MUA2175", + "title": "AAS Project 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2176", + "title": "AAS Project 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2175 AAS Project 1", + "corequisite": "" + }, + { + "moduleCode": "MUA2180", + "title": "Orchestral Repertoire for Brass 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 1181 First Year Brass Class B", + "corequisite": "" + }, + { + "moduleCode": "MUA2181", + "title": "Orchestral Repertoire for Brass 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2180 Orchestral Repertoire for Brass 2A", + "corequisite": "" + }, + { + "moduleCode": "MUA2182", + "title": "Percussion Audition Techniques 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1150 Basic Mechanics of Percussion B", + "corequisite": "" + }, + { + "moduleCode": "MUA2183", + "title": "Percussion Audition Techniques 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2182 Orchestral Repertoire for Percussion 2A", + "corequisite": "" + }, + { + "moduleCode": "MUA2184", + "title": "Orchestral Repertoire for Double Bass 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1107 Large Ensembles 1A", + "corequisite": "" + }, + { + "moduleCode": "MUA2185", + "title": "Orchestral Repertoire for Woodwinds 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1156 First Year Woodwinds Class B", + "corequisite": "" + }, + { + "moduleCode": "MUA2186", + "title": "Orchestral Repertoire for Harp 2A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1107 Large Ensembles 1A", + "corequisite": "" + }, + { + "moduleCode": "MUA2187", + "title": "Orchestral Repertoire for Harp 2B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2186 Orchestral Repertoire for Harp 2A", + "corequisite": "" + }, + { + "moduleCode": "MUA2190", + "title": "Applied Voice Major Study 2A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 1191 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA2191", + "title": "Applied Voice Major Study 2B", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 2190 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA2192", + "title": "Chambers Singers 3", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open to Voice Majors", + "corequisite": "" + }, + { + "moduleCode": "MUA2193", + "title": "Chambers Singers 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open to Voice Majors", + "corequisite": "" + }, + { + "moduleCode": "MUA2196", + "title": "Diction for Singers 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2201", + "title": "Keyboard Literature I", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2202", + "title": "Keyboard Literature II", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2205", + "title": "Rhythmic Devices in Performance 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "Only open to students at Yong Siew Toh Conservatory", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "MUA2206", + "title": "Harmonic Hearing for Performers", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "Only open to students at Yong Siew Toh Conservatory", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "MUA2207", + "title": "Introduction to World Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2208", + "title": "Advanced Contemporary Music Performance", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2209", + "title": "Advanced Contemporary Music Performance", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2210", + "title": "Rhythmical Devices in Performance 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2205", + "corequisite": "" + }, + { + "moduleCode": "MUA2215B", + "title": "Orchestral Excerpts for Violin", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2216B", + "title": "Orchestral Excerpts for Viola", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2217B", + "title": "Orchestral Excerpts for Cello", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2218B", + "title": "Orchestral Excerpts for Double Bass", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2231", + "title": "Orchestral Excerpts for Strings 2A", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2232", + "title": "Orchestral Excerpts for Strings 2B", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2240", + "title": "Collaborative Piano - Piano Ensemble", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "MUA2155", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1112", + "corequisite": "" + }, + { + "moduleCode": "MUA2241", + "title": "Collaborative Piano - Vocal Accompaniment", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "MUA2155; or\n[MUA2242 and MUA2243]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1115", + "corequisite": "" + }, + { + "moduleCode": "MUA2242", + "title": "Collaborative Piano - Instrumental Accompaniment", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "MUA2155; or\n[MUA2241 and MUA2243]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1116", + "corequisite": "" + }, + { + "moduleCode": "MUA2243", + "title": "Collaborative Piano - Chamber Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "MUA2155; or\n[MUA2241 and MUA2242]", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1116", + "corequisite": "" + }, + { + "moduleCode": "MUA2251", + "title": "Live Interactivity", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2255", + "title": "Applied Secondary A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2256", + "title": "Applied Secondary B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2270", + "title": "Synthesis and Signal Processing", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA2271", + "title": "Virtual Instrument Sound Design", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3101", + "title": "Composition Major Study 3A", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2102 Composition Major Study 2B", + "corequisite": "" + }, + { + "moduleCode": "MUA3102", + "title": "Composition Major Study 3B", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3101 Composition Major Study 3A", + "corequisite": "" + }, + { + "moduleCode": "MUA3103", + "title": "Composition Seminar 3A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3104", + "title": "Composition Seminar 3B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3105", + "title": "Conducting", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Any level 2000 modules offered by the conservatory for conservatory students, or CET entry requirements.", + "corequisite": "" + }, + { + "moduleCode": "MUA3107", + "title": "Large Ensembles 3A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3108", + "title": "Large Ensembles 3B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3109", + "title": "Chamber Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2109", + "corequisite": "" + }, + { + "moduleCode": "MUA3110", + "title": "Chamber Music in Mixed Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2110", + "corequisite": "" + }, + { + "moduleCode": "MUA3111", + "title": "Keyboard Literature III", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3112", + "title": "Keyboard Literature IV", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3113", + "title": "Keyboard Skills For Piano Majors III", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3114", + "title": "Keyboard Skills For Piano Majors Iv", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3115", + "title": "Orchestral Studies for Pianists", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The module is compulsory for conservatory piano majors, however admission to the YSTEO would be possible through audition by the Head of Keyboard Studies.", + "corequisite": "" + }, + { + "moduleCode": "MUA3116", + "title": "Pedagogy for Orchestral Instrumentalists", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any of the Year 2 Major Study modules functions as a prerequisite. The module is compulsory for the fulfilment of the major in any of the orchestral instrument major studies.", + "corequisite": "" + }, + { + "moduleCode": "MUA3120", + "title": "Orchestral Repertoire for Double Bass 3B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3119 Orchestral Repertoire for Double Bass 3A", + "corequisite": "" + }, + { + "moduleCode": "MUA3128", + "title": "Orchestral Repertoire for Woodwinds 3B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3127 Orchestral Repertoire for Woodwinds 3A", + "corequisite": "" + }, + { + "moduleCode": "MUA3130", + "title": "Percussion Audition Techniques 3B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3129 Orchestral Repertoire for Percussion 3A", + "corequisite": "" + }, + { + "moduleCode": "MUA3131", + "title": "Orchestral Excerpts for Strings 3A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3132", + "title": "Orchestral Excerpts for Strings 3B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3133", + "title": "Compositional Discourse", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Student must be majoring at YSTCM in music composition.", + "corequisite": "" + }, + { + "moduleCode": "MUA3139", + "title": "Violin Major Study 3A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3140", + "title": "Violin Major Study 3B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3143", + "title": "Violoncello Major Study 3A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3144", + "title": "Violoncello Major Study 3B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3151", + "title": "Third Year Jury", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3153", + "title": "Noon Recital Series 3A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3154", + "title": "Noon Recital Series 3B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3155", + "title": "Collaborative Piano Studies", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3156", + "title": "Collaborative Piano Studies", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3161", + "title": "Junior Recital", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3162", + "title": "Intermediate Studies on Principal Instrument", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3163", + "title": "Musical Pathways", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2163", + "corequisite": "" + }, + { + "moduleCode": "MUA3164", + "title": "Career Development Project", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Expanding Musical Horizons", + "corequisite": "" + }, + { + "moduleCode": "MUA3170", + "title": "Audio Postproduction I", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2171 Multitrack Recording 2", + "corequisite": "" + }, + { + "moduleCode": "MUA3171", + "title": "Production Listening", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Multitrack Recording 2, and Acoustics and\nPsychoacoustics", + "corequisite": "" + }, + { + "moduleCode": "MUA3172", + "title": "Audio Postproduction 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3170", + "corequisite": "" + }, + { + "moduleCode": "MUA3173", + "title": "Electroacoustics", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2172 Room Acoustics", + "corequisite": "" + }, + { + "moduleCode": "MUA3175", + "title": "AAS Project 3", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2176 AAS Project 2", + "corequisite": "" + }, + { + "moduleCode": "MUA3176", + "title": "AAS Project 4", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3175 AAS Project 3", + "corequisite": "" + }, + { + "moduleCode": "MUA3177", + "title": "Music Programming & Production", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2163 Leading and Guiding Through Music, or another\nrelated Level 2000 Music module.", + "corequisite": "" + }, + { + "moduleCode": "MUA3178", + "title": "MS / MCP 3rd Year Project", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must either be enrolled as Majors in Music & Society,\nand Music, Collaboration & Production or to have declared the\nmajor areas as a second major in relation to their principal\ndegree", + "corequisite": "" + }, + { + "moduleCode": "MUA3179", + "title": "Capstone Project for Second Major in Music", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "Restricted to Second Majors in Music students only.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be enrolled in the Second Major, as agreed\nwith the Conservatory and their home department / faculty,\nand have completed a minimum of 16 MCs in their area of\nmusical concentration.", + "corequisite": "" + }, + { + "moduleCode": "MUA3181", + "title": "Advanced Concepts in Orchestral Repertoire", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3182", + "title": "Percussion Audition Techniques 3A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2183 Orchestral Repertoire for Percussion 2B", + "corequisite": "" + }, + { + "moduleCode": "MUA3184", + "title": "Orchestral Repertoire for Double Bass 3A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2120 Orchestral Repertoire for Double Bass 2B", + "corequisite": "" + }, + { + "moduleCode": "MUA3185", + "title": "Orchestral Repertoire for Woodwinds 3A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2128 Orchestral Repertoire for Woodwinds 2B", + "corequisite": "" + }, + { + "moduleCode": "MUA3186", + "title": "Orchestral Repertoire for Harp 3A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2187 Orchestral Repertoire for Harp 2B", + "corequisite": "" + }, + { + "moduleCode": "MUA3187", + "title": "Orchestral Repertoire for Harp 3B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3186 Orchestral Repertoire for Harp 3A", + "corequisite": "" + }, + { + "moduleCode": "MUA3188", + "title": "Live Sound Reinforcement", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2170 Multitrack Recording 1 and MUA2171 Multitrack Recording 2", + "corequisite": "" + }, + { + "moduleCode": "MUA3189", + "title": "Live Sound Reinforcement Project", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3188 Live Sound Reinforcement", + "corequisite": "" + }, + { + "moduleCode": "MUA3190", + "title": "Applied Voice Major Study 3B", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 2191 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA3191", + "title": "Junior Recital in Voice", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 3190 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA3194", + "title": "Voice Literature 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT 2118 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA3195", + "title": "Voice Literature 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 3194 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA3201", + "title": "Advanced Contemporary Music Performance", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3202", + "title": "Advanced Contemporary Music Performance", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3203", + "title": "Performance Practices of 20thC Composers", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3204", + "title": "Conducting Contemporary Instrumental Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3163 Musical Pathways, or MUA3105 Conducting", + "corequisite": "" + }, + { + "moduleCode": "MUA3205", + "title": "Jazz Study and Performance 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUS students (Year 3 & 4). Non-YST students will need to\ntake a music theory placement test to ensure that they\nhave a reasonable command of basic music theory.", + "corequisite": "" + }, + { + "moduleCode": "MUA3206", + "title": "Jazz Study and Performance 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3205", + "corequisite": "" + }, + { + "moduleCode": "MUA3207", + "title": "Collaborative Composition", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MCM 1-IV and Introduction to Professional Studies", + "corequisite": "" + }, + { + "moduleCode": "MUA3209", + "title": "Business for Musicians", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3210", + "title": "Chamber Singers 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3211", + "title": "Chamber Singers 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3212", + "title": "Improvisational Styles and Techniques", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3213", + "title": "Music Notation and Engraving", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3214", + "title": "Introduction to Pedagogy", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3215", + "title": "World Music for Creative Performance and Workshops", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1163 or permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA3216", + "title": "Performance and Interaction", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3163", + "corequisite": "" + }, + { + "moduleCode": "MUA3218", + "title": "Introduction to Piano Technology", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students will be expected to have knowledge of music theory, ear training and keyboard skills.", + "corequisite": "" + }, + { + "moduleCode": "MUA3219", + "title": "World Music Ensemble", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3220", + "title": "World Music Ensemble", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3219", + "corequisite": "" + }, + { + "moduleCode": "MUA3221", + "title": "Intensive Music Engagement Practicum", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3222", + "title": "SEAsian Regional Creative Project", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "Students will apply directly to the instructor seeking permission to join. The Professional Integration faculty and administration will decide who is admitted based on their work and drive in other courses and activities. Students must demonstrate genuine interest and capacity for the goals of the course to be considered. Travel to the country where the project is to take place is required, so students must willing and able to travel to the specified country.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3223", + "title": "Cultural Encounters - Bali Excursion and Study Tour", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "Students will apply directly to the instructor seeking permission to join. The Professional Integration faculty and administration will decide who is admitted based on their work and drive in other courses and activities. Students must demonstrate genuine interest and capacity for the goals of the course to be considered.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3224", + "title": "Intermediate Keyboard Studies", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Audition. Approximate four years of piano studying with sight-reading skill.", + "corequisite": "" + }, + { + "moduleCode": "MUA3225", + "title": "Early Advanced Keyboard Studies", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3204. Or audition. Approximate five years of piano studying with sight-reading skill.", + "corequisite": "" + }, + { + "moduleCode": "MUA3226", + "title": "Collaboratory", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "BMus student at YSTCM", + "corequisite": "" + }, + { + "moduleCode": "MUA3227", + "title": "Collaboratory B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 3226 Collaboratory A", + "corequisite": "" + }, + { + "moduleCode": "MUA3228", + "title": "Re-imagining Pianism through Analysis", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This is an elective open to Conservatory piano students and all NUS students. Students are required to be fluent in harmony (functional harmony and chromatic harmony) as the class offers an application of (rather than an introduction to) harmony. As such, NUS students would be advised to have taken either MUA 3224 or MUA 1201. For those seeking direct entry MEP study at Junior College would offer sufficient background as well. However is not a must to have experienced either of the above to be deemed as having sufficient background. Students must decide for themselves after 2 weeks of classes.", + "corequisite": "" + }, + { + "moduleCode": "MUA3230", + "title": "Music Cognition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Introduction to Psychology (PL1101E) is recommended but not required", + "corequisite": "" + }, + { + "moduleCode": "MUA3240", + "title": "Collaborative Piano - Piano Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2240; or\nMUA2155", + "corequisite": "" + }, + { + "moduleCode": "MUA3241", + "title": "Collaborative Piano - Vocal Accompaniment", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2241; or MUA2155; or\n[MUA2242 and MUA2243]", + "corequisite": "" + }, + { + "moduleCode": "MUA3242", + "title": "Collaborative Piano - Instrumental Accompaniment", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2242; or MUA2155; or\n[MUA2241 and MUA2243]", + "corequisite": "" + }, + { + "moduleCode": "MUA3243", + "title": "Collaborative Piano - Chamber Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA2243; or MUA2155; or\n[MUA2241 and MUA2242]", + "corequisite": "" + }, + { + "moduleCode": "MUA3255", + "title": "Applied Secondary C", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3256", + "title": "Applied Secondary D", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3260", + "title": "Internship in Music Related Pathways", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3261", + "title": "Career Development Group Project", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Musical Pathways, Leading and Guiding through Music.", + "corequisite": "" + }, + { + "moduleCode": "MUA3263", + "title": "Internship in Music Related Pathways 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3264", + "title": "Career Development Independent Project", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pre-requisite of 5 MCs of Professional Development\nmodules", + "corequisite": "" + }, + { + "moduleCode": "MUA3265", + "title": "Career Development Independent Project 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Musical Pathways, Leading and Guiding, Career development independent or Career development group project, Approval of project proposal by Professional Integration faculty committee", + "corequisite": "" + }, + { + "moduleCode": "MUA3270", + "title": "Architectural Acoustics and Acoustical Measurement", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acoustics and Psychoacoustics", + "corequisite": "" + }, + { + "moduleCode": "MUA3271", + "title": "Acoustics and Sound Production for Performers", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3274", + "title": "Sonic Environments", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3275", + "title": "Sonic Circuits", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "All ECE students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3276", + "title": "Experimental Music Realizations", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3277", + "title": "Computer-Aided Composition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA3301", + "title": "Preparing for International Competition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Participation in this module requires approval from the\nHead of Major Area which should normally be based also\non an average grade of A- in relation to instrumental major\nstudy modules.", + "corequisite": "" + }, + { + "moduleCode": "MUA4101", + "title": "Composition Major Study 4A", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3102", + "corequisite": "" + }, + { + "moduleCode": "MUA4102", + "title": "Composition Major Study 4B", + "moduleCredit": 8, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4101 Compositional Major Study 4A", + "corequisite": "" + }, + { + "moduleCode": "MUA4103", + "title": "Composition Seminar 4A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4104", + "title": "Composition Seminar 4B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4105", + "title": "Basic Conducting", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4107", + "title": "Large Ensembles 4A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4108", + "title": "Leadership Skills in an Orchestral Context", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least two previous semesters in the 2 MC Large Ensembles module.", + "corequisite": "" + }, + { + "moduleCode": "MUA4109", + "title": "Chamber Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3109", + "corequisite": "" + }, + { + "moduleCode": "MUA4110", + "title": "Chamber Music in Mixed Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3110", + "corequisite": "" + }, + { + "moduleCode": "MUA4113", + "title": "Piano Pedagogy", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4114", + "title": "Piano Pedagogy B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4119", + "title": "Conservatory Strings 4A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4139", + "title": "Violin Major Study 4A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4140", + "title": "Violin Major Study 4B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4143", + "title": "Violoncello Major Study 4A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4144", + "title": "Violoncello Major Study 4B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4151", + "title": "Senior Recital", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4151A", + "title": "Jury 4A", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4153", + "title": "Noon Recital Series 4A", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4154", + "title": "Noon Recital Series 4B", + "moduleCredit": 0, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4155", + "title": "Collaborative Piano Studies", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4161", + "title": "Advanced Studies on Principal Instrument", + "moduleCredit": 6, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4162", + "title": "Senior Recital - Instrumental Performance Capstone", + "moduleCredit": 10, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4171", + "title": "Audio for Media", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Multitrack Recording 2", + "corequisite": "" + }, + { + "moduleCode": "MUA4172", + "title": "Internship in Audio Arts and Sciences 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "4th year standing", + "corequisite": "" + }, + { + "moduleCode": "MUA4173", + "title": "Audio for Media 1", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4170 Audio Postproduction II", + "corequisite": "" + }, + { + "moduleCode": "MUA4174", + "title": "Audio for Media 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4173 Audio for Media 1", + "corequisite": "" + }, + { + "moduleCode": "MUA4175", + "title": "AAS Final Project", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3176 AAS Project 4", + "corequisite": "" + }, + { + "moduleCode": "MUA4176", + "title": "Music Production and Marketing", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA1170 Basic Recording 1, MUA1171 Basic Recording 2, MUA2170 Multitrack Recording 1, MUA2170 Multitrack Recording 2", + "corequisite": "" + }, + { + "moduleCode": "MUA4177", + "title": "Music Production and Marketing II", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4176 Music Production and Marketing I", + "corequisite": "" + }, + { + "moduleCode": "MUA4178", + "title": "MS / MCP Capstone Project", + "moduleCredit": 10, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Student must be enrolled at YSTC in Music & Society, and Music,\nCollaboration & Production", + "corequisite": "" + }, + { + "moduleCode": "MUA4179", + "title": "Final Project", + "moduleCredit": 8, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "4th year standing", + "corequisite": "" + }, + { + "moduleCode": "MUA4180", + "title": "Internship in Audio Arts and Science 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "4th year standing", + "corequisite": "" + }, + { + "moduleCode": "MUA4181", + "title": "Professional Concepts in Orchestral Repertoire", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4190", + "title": "Applied Voice Major Study 4A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 3191 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA4191", + "title": "Senior Recital in Voice", + "moduleCredit": 10, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 4190 or Permission of Instructor", + "corequisite": "" + }, + { + "moduleCode": "MUA4203", + "title": "Advanced Conducting I", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3163, grade must be above A- plus a successful audition", + "corequisite": "" + }, + { + "moduleCode": "MUA4205", + "title": "Advanced Conducting II", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4203 or MUA4204", + "corequisite": "" + }, + { + "moduleCode": "MUA4208", + "title": "Advanced Leadership in an Orchestral Context", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4108 Leadership Skills in an Orchestral Context with a grade of at least a B.", + "corequisite": "" + }, + { + "moduleCode": "MUA4209", + "title": "Chamber Music 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4109 Chamber Music", + "corequisite": "" + }, + { + "moduleCode": "MUA4210", + "title": "Chamber Music in Mixed Ensemble 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4110 Chamber Music in Mixed Ensemble", + "corequisite": "" + }, + { + "moduleCode": "MUA4215", + "title": "Vocal Pedagogy", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4215B", + "title": "Orchestral Excerpts for Violin", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4216", + "title": "Orchestral Excerpts For Viola", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4217", + "title": "Orchestral Excerpts For Cello", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4217B", + "title": "Orchestral Excerpts for Cello", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4218", + "title": "Orchestral Excerpts For Double Bass", + "moduleCredit": 1, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4219", + "title": "Advanced Chamber Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4220", + "title": "Advanced Chamber Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4226", + "title": "Collaboratory C", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3227 Collaboratory B", + "corequisite": "" + }, + { + "moduleCode": "MUA4227", + "title": "Collaboratory D", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA 4226 Collaboratory C", + "corequisite": "" + }, + { + "moduleCode": "MUA4228", + "title": "Advanced Chamber Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4229", + "title": "Advanced Chamber Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4231", + "title": "Orchestral Excerpts for Strings 4A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA4232", + "title": "Orchestral Excerpts for Strings 4B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4231 Orchestral Excerpts for Strings 4A", + "corequisite": "" + }, + { + "moduleCode": "MUA4240", + "title": "Collaborative Piano - Piano Ensemble", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3240", + "corequisite": "" + }, + { + "moduleCode": "MUA4241", + "title": "Collaborative Piano - Vocal Accompaniment", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3241", + "corequisite": "" + }, + { + "moduleCode": "MUA4242", + "title": "Collaborative Piano - Instrumental Accompaniment", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3242", + "corequisite": "" + }, + { + "moduleCode": "MUA4243", + "title": "Collaborative Piano - Chamber Music", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3243", + "corequisite": "" + }, + { + "moduleCode": "MUA4271", + "title": "Advanced Live Sound Reinforcement 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3188 Live Sound Reinforcement", + "corequisite": "" + }, + { + "moduleCode": "MUA4272", + "title": "Advanced Live Sound Reinforcement 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4271 Advanced Live Sound Reinforcement 1", + "corequisite": "" + }, + { + "moduleCode": "MUA4301", + "title": "Advanced Preparation in International Competition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Participation in this module requires approval from the\nHead of Major which should normally be based also on an\naverage grade of A- in relation to instrumental major study\nmodules.", + "corequisite": "" + }, + { + "moduleCode": "MUA4309", + "title": "Chamber Music 5", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4209 Chamber Music", + "corequisite": "" + }, + { + "moduleCode": "MUA4310", + "title": "Chamber Music in Mixed Ensemble 5", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4210 Chamber Music in Mixed Ensemble", + "corequisite": "" + }, + { + "moduleCode": "MUA4340", + "title": "Collaborative Piano - Piano Ensemble 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4240 Collaborative Piano – Piano Ensemble", + "corequisite": "" + }, + { + "moduleCode": "MUA4341", + "title": "Collaborative Piano - Vocal Accompaniment 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4241 Collaborative Piano – Vocal Accompaniment", + "corequisite": "" + }, + { + "moduleCode": "MUA4342", + "title": "Collaborative Piano - Instrumental Accompaniment 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4242 Collaborative Piano – Instrumental Accompaniment", + "corequisite": "" + }, + { + "moduleCode": "MUA4343", + "title": "Collaborative Piano - Chamber Music 4", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4243 Collaborative Piano – Chamber Music", + "corequisite": "" + }, + { + "moduleCode": "MUA4409", + "title": "Chamber Music 6", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4309 Chamber Music", + "corequisite": "" + }, + { + "moduleCode": "MUA4410", + "title": "Chamber Music in Mixed Ensemble 6", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4310 Chamber Music in Mixed Ensemble", + "corequisite": "" + }, + { + "moduleCode": "MUA4440", + "title": "Collaborative Piano - Piano Ensemble 5", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4340 Collaborative Piano – Piano Ensemble", + "corequisite": "" + }, + { + "moduleCode": "MUA4441", + "title": "Collaborative Piano - Vocal Accompaniment 5", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4341 Collaborative Piano – Vocal Accompaniment", + "corequisite": "" + }, + { + "moduleCode": "MUA4442", + "title": "Collaborative Piano - Instrumental Accompaniment 5", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4342 Collaborative Piano – Instrumental Accompaniment", + "corequisite": "" + }, + { + "moduleCode": "MUA4443", + "title": "Collaborative Piano - Chamber Music 5", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4343 Collaborative Piano – Chamber Music", + "corequisite": "" + }, + { + "moduleCode": "MUA4540", + "title": "Collaborative Piano - Piano Ensemble 6", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4440 Collaborative Piano – Piano Ensemble", + "corequisite": "" + }, + { + "moduleCode": "MUA4541", + "title": "Collaborative Piano Vocal Accompaniment 6", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4441 Collaborative Piano – Vocal Accompaniment", + "corequisite": "" + }, + { + "moduleCode": "MUA4542", + "title": "Collaborative Piano - Instrumental Accompaniment 6", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4442 Collaborative Piano – Instrumental Accompaniment", + "corequisite": "" + }, + { + "moduleCode": "MUA4543", + "title": "Collaborative Piano - Chamber Music 6", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA4443 Collaborative Piano – Chamber Music", + "corequisite": "" + }, + { + "moduleCode": "MUA5105", + "title": "Leadership in Orchestral Conducting", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA3105 Conducting or MUA3163 Musical Pathways; or permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "MUA5107", + "title": "Large Ensembles 5A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5108", + "title": "Large Ensembles 5B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5109", + "title": "Chamber Ensemble 5A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5110", + "title": "Chamber Ensemble 5B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5111", + "title": "Large Ensembles 5C", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5112", + "title": "Large Ensembles 5d", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5113", + "title": "Chamber Ensemble 5C", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5114", + "title": "Chamber Ensemble 5d", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5115", + "title": "Ensemble Study 5A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5116", + "title": "Ensemble Study 5B", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA5115 Ensemble Study 5A", + "corequisite": "" + }, + { + "moduleCode": "MUA5155", + "title": "Major Study 5A", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5156", + "title": "Major Study 5B", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5157", + "title": "Major Study 5C", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5158", + "title": "Major Study 5d", + "moduleCredit": 5, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5161", + "title": "Major Study 5A", + "moduleCredit": 8, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5162", + "title": "Major Study 5B", + "moduleCredit": 8, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5195", + "title": "Recital A", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA5196", + "title": "Recital B", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUA6115", + "title": "Ensemble Study 6A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA5116 Ensemble Study 5B", + "corequisite": "" + }, + { + "moduleCode": "MUA6116", + "title": "Ensemble Study 6B", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA6115 Ensemble Study 6A", + "corequisite": "" + }, + { + "moduleCode": "MUA6161", + "title": "Major Study 6A", + "moduleCredit": 8, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA5162 Major Study 5B", + "corequisite": "" + }, + { + "moduleCode": "MUA6162", + "title": "Major Study 6B", + "moduleCredit": 8, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUA6161 Major Study 6A", + "corequisite": "" + }, + { + "moduleCode": "MUH1100", + "title": "Understanding and Describing Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH1101", + "title": "Foundations for Musical Discovery", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH2201", + "title": "Classical Styles and Romantic Spirits", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH2202", + "title": "What Was, and Is, Popular Music?", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH2203", + "title": "Music of the Church and State", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH3202", + "title": "Musicology", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH3203", + "title": "The Evolution of Music for the Stage", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUH3205", + "title": "Chamber Music Since 1740", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUH1101 Foundations for Musical Discovery and / or permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "MUH4203", + "title": "Music Criticism", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A second-year sequence of modules in either Music History or the history of a related Arts discipline", + "corequisite": "" + }, + { + "moduleCode": "MUH4204", + "title": "Music History for Post-Graduate Placement", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL1101", + "title": "Patrons Of The Arts", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL1105", + "title": "Italian for Musicians 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL1106", + "title": "Italian for Musicians 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LAI 1731 or MUL1105", + "corequisite": "" + }, + { + "moduleCode": "MUL1107", + "title": "French for Musicians 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL1108", + "title": "French for Musicians 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL1109", + "title": "German for Musicians 1", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL1110", + "title": "German for Musicians 2", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL2102", + "title": "Patrons of the Arts", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEM1029, GET1019", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUL2101 Critical Thinking for Musicians", + "corequisite": "" + }, + { + "moduleCode": "MUL2202", + "title": "Technology and Artistic Innovations", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL2203", + "title": "The Art of Rituals and Recreation", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL3201", + "title": "Art and Identity", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEM1030, GEH1038", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL3202", + "title": "Technology and Artistic Innovators", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEM2021 GEH1048", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUL3203", + "title": "The Art of Rituals and Recreation", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "GEM2022, GEH1039", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUT1101", + "title": "Introduction to Musical Concepts and Materials", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Entrance into YSTCM BMus programme or satisfactory grade on the YSTCM theory skills exam", + "corequisite": "" + }, + { + "moduleCode": "MUT1201", + "title": "Introduction to Classical Music Composition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUT2201", + "title": "Harmonic Practices", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to Musical Concepts and Materials", + "corequisite": "" + }, + { + "moduleCode": "MUT2202", + "title": "Counterpoint Through the Ages", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to Musical Concepts and Materials", + "corequisite": "" + }, + { + "moduleCode": "MUT2203", + "title": "Texture and Timbre", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101 Musical Concepts and Materials", + "corequisite": "" + }, + { + "moduleCode": "MUT2204", + "title": "Formal Practices", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to Musical Concepts and Materials", + "corequisite": "" + }, + { + "moduleCode": "MUT2205", + "title": "Text and Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101 Introduction to MCM", + "corequisite": "" + }, + { + "moduleCode": "MUT3113", + "title": "Orchestration A", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT 2203 Texture and Timbre", + "corequisite": "" + }, + { + "moduleCode": "MUT3114", + "title": "Orchestration B", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUT3201", + "title": "Modern Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT2118 Musical Concepts and Materials IV", + "corequisite": "" + }, + { + "moduleCode": "MUT3201C", + "title": "Compositional Approaches since WWII", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of core BMus requirements (MCM 1-IV, CAM, Music and Context)", + "corequisite": "" + }, + { + "moduleCode": "MUT3202", + "title": "Sonata Form", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101 + any 3 out of the following 5 modules:\n(MUT2201, MUT2202, MUT2203, MUT2204, MUT2205)", + "corequisite": "" + }, + { + "moduleCode": "MUT3211", + "title": "Tonal Counterpoint", + "moduleCredit": 3, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT 1121, MUT 1122, MUT 2117, MUT 2118", + "corequisite": "" + }, + { + "moduleCode": "MUT3212", + "title": "Modal Counterpoint", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to MCM;\n3 Core Compositional Engagement (Theory) Electives and/or permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "MUT3213", + "title": "Romantic Styles", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to Musical Concepts and Materials 3 Core Compositional Engagement (Theory) Electives and/or permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "MUT3214", + "title": "Concerto and Cadenza", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to Musical Concepts and Materials 3 Core Compositional Engagement (Theory) Electives and/or permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "MUT3215", + "title": "Composition for Non-majors", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of Core Curriculum in Analysis and Composition (MUT1121 + 3 core electives)\n\nFor students on older curriculum: MUT 1121, MUT 1122, MUT 2117, MUT 2118", + "corequisite": "" + }, + { + "moduleCode": "MUT3216", + "title": "Bach Suites", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT1101: Introduction to MCM", + "corequisite": "" + }, + { + "moduleCode": "MUT3220", + "title": "Wind Ensemble Arranging/Composition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT2203: Texture and Timbre", + "corequisite": "" + }, + { + "moduleCode": "MUT3221", + "title": "Writing for Chinese Ensembles", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MUT3222", + "title": "Choral Composition", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MUT 1101: Intro to MCM\n(Or Placement Test for NUS students)", + "corequisite": "" + }, + { + "moduleCode": "MUT3223", + "title": "Early Twentieth-Century Music", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of Core Curriculum in Analysis and Composition (MUT1121 + 3 core electives)\n\nFor students on older curriculum: MUT 1121, MUT 1122, MUT 2117, MUT 2118", + "corequisite": "" + }, + { + "moduleCode": "MUT3224", + "title": "Teaching Music Online", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Second year status in music or permission of instructor", + "corequisite": "" + }, + { + "moduleCode": "MUT3225", + "title": "Teaching Music Online 2", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Second year status in music or permission of instructor", + "corequisite": "" + }, + { + "moduleCode": "MUT4201", + "title": "Graduate Theory Preparation", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Core Compositional Engagement modules (MUT1101 Intro to MCM + 3 core elective modules). Student must have 4th (final) year status.", + "corequisite": "" + }, + { + "moduleCode": "MUX2102", + "title": "Exchange Module", + "moduleCredit": 2, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5152", + "title": "Communicating Science with the Public", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5200", + "title": "MSc Science Communication Project", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5201", + "title": "Essentials of Science Communication", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students outside the MSc in Science Communication Programme may be considered on a case by case basis.", + "corequisite": "" + }, + { + "moduleCode": "MW5202", + "title": "Innovative Strategies in Science Communication", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students outside the MSc in Science Communication Programme may be considered on a case-by-case basis.", + "corequisite": "" + }, + { + "moduleCode": "MW5203", + "title": "Frontier Topics in Science", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For students enrolled in the MSc Science Communication programme only. Students outside the MSc in Science Communication Programme may be considered on a caseby-case basis.", + "corequisite": "" + }, + { + "moduleCode": "MW5252", + "title": "Engagement for Policy Impact", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5253", + "title": "Science Communication Project Design and Delivery", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5254", + "title": "Public Events for Science Engagement", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5258", + "title": "Science in Popular Fiction", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5259", + "title": "Cross Cultural Perspectives in Science Communication", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5264", + "title": "Health Promotion and Protection", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5270", + "title": "Strategies in Science Communication", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5271", + "title": "Science Communication and the Web", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5272", + "title": "Science Dialogue Theory and Practice", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "MW5273", + "title": "Making Modern Science", + "moduleCredit": 5, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NE5999", + "title": "Graduate Seminars", + "moduleCredit": 4, + "department": "Nanoengineering Programme", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM1101E", + "title": "Communications, New Media and Society", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM1101X", + "title": "Communications, New Media and Society", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 3 + ], + "preclusion": "NM1101E or NM1101FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2101", + "title": "Theories of Communications and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2008 and before:\nNil.\n\nCohorts 2009 to 2011:\nObtain a grade of B‐ or above in NM1101E Communications, New Media and Society (applies to students from ALL faculties except School of Computing). Students who fail to meet the B‐ criterion in NM1101E will have the opportunity to take a department conducted test, which will act as an alternative prerequisite.\n\nCohort 2012 onwards:\nNil", + "corequisite": "" + }, + { + "moduleCode": "NM2103", + "title": "Quantitative Research Methods", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2104", + "title": "Qualitative Communication Research Methods", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2201", + "title": "Intercultural Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2203", + "title": "Social Media in Communication Management", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2207", + "title": "Computational Media Literacy", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "CS1010 and its equivalents; CS1101 and its equivalents; NM2207Y", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2209", + "title": "Social Psychology of New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2212", + "title": "Visual Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2213", + "title": "Introduction to Human-Computer Interaction Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2219", + "title": "Principles of Communication Management", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM2219Y", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2219Y", + "title": "Principles of Communication Management", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM2219", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2220", + "title": "Introduction to Media Writing", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2222", + "title": "Ethics in Communication and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2223", + "title": "Media Law and Regulation", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2224", + "title": "Creativity, Culture and Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2302", + "title": "Mobility and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM2303", + "title": "Fake News, Lies and Spin: How to Sift Fact from Fiction", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3205", + "title": "Digital Media Cultures", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3210", + "title": "Cybercrime and Copyright", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM3203, NM3880A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3211", + "title": "News Reporting and Writing", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM2221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NM2220 Introduction to Media Writing. Read and pass a minimum of 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "NM3215", + "title": "Advertising Strategies", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MKT3420 Promotional Management", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3216", + "title": "Game Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3217", + "title": "Principles of Communication Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM2208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3219", + "title": "Writing for Communication Management", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NM2220, NM2219", + "corequisite": "" + }, + { + "moduleCode": "NM3221", + "title": "Mobile Interaction Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3222", + "title": "Interactive Storytelling", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3224", + "title": "Culture Industries", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3230", + "title": "Digital Storytelling", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3232", + "title": "Strategic Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM3233, NM3220, NM3232Y", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3232Y", + "title": "Strategic Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM3232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3234", + "title": "Leadership, Organisations and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3234Y", + "title": "Leadership, Organisations and Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM3234 Leadership, Organisations and New Media", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3237", + "title": "Health Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM4880D Health Communications\nNM4220 Health Communications\nNM3237Y Health Communication", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3237Y", + "title": "Health Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM3237", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3239", + "title": "Retrieving, Exploring and Analysing Data", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3239Y", + "title": "Retrieving, Exploring and Analysing Data", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM3239 Retrieving, Exploring and Analysing Data", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3241", + "title": "Cultural Studies: Theory and Practice", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC3224 Theory and Practice in Cultural Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM3550", + "title": "Communications & New Media Internship", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other series-internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) For NM Major only,\n(2) Read and pass a minimum of 80 MCs AND\n(3) Must read INM3550 concurrently", + "corequisite": "" + }, + { + "moduleCode": "NM3550Y", + "title": "Communications & New Media Internship", + "moduleCredit": 12, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 4 + ], + "preclusion": "NM3550\nINM3550", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) For NM Major only,\n(2) Read and passed a minimum of 80 MCs (of which 24 MCs of NM modules)", + "corequisite": "" + }, + { + "moduleCode": "NM3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM3880", + "title": "Topics in CNM", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any IF/NM or recognised modules", + "corequisite": "" + }, + { + "moduleCode": "NM4102", + "title": "Advanced Communications & New Media Research", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM4101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before: \n(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track. (2) NM2102 or NM2103 or NM2104. \n\nCohort 2012-2019: \n(1) Completed 80MCs, including 28MCs in NM or 28MCs in GL or GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2101 or NM2103 or NM2104\n\nCohort 2020 onwards: \n(1) Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2101 or NM2103 or NM2104", + "corequisite": "" + }, + { + "moduleCode": "NM4203", + "title": "Infocomm Technology Policy", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "IF5203, NM5203 and NM5203R", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(Not applicable to SOC students) \nCompleted 80 MCs, including 28 MCs in NM with a minimum CAP of 3.50 or be on the Honours track. \n\n(For SOC students) \nCompleted 80 MCs and obtain a minimum CAP of 3.50.\n\nCohort 2012-2019: \nCompleted 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track. \n\n(For SOC students) \nCompleted 80 MCs and obtain a minimum CAP of 3.20.\n\n(Not applicable to SOC students) \nCompleted 80 MCs, including 28 MCs in NM with a minimum CAP of 3.50 or be on the Honours track. \n\n(For SOC students) \nCompleted 80 MCs and obtain a minimum CAP of 3.50. \n\nCohort 2020 onwards: \nCompleted 80 MCs, including 28 MCs in NM with a minimum CAP of 3.20 or be on the Honours track. \n\n(For SOC students) \nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4204", + "title": "Media Ethics - Principles and Practices", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track. \n\n(For SOC students) \nCompleted 80 MCs and obtain a minimum CAP of 3.20\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. \n\n(For SOC students) \nCompleted 80 MCs and obtain a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "NM4206", + "title": "Media Regulation and Governance", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "NM3202, NM2202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\n(For SOC students) Completed 80 MCs and obtain a minimum CAP of 3.20.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. \n\n(For SOC students) Completed 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4207", + "title": "Managing Communication Campaigns", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "NM4217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(2) NM2219 Principles of Communication Management", + "corequisite": "" + }, + { + "moduleCode": "NM4208", + "title": "Strategic Communication Design", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(2) NM3217", + "corequisite": "" + }, + { + "moduleCode": "NM4210", + "title": "User Experience Design", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\n(Not applicable to SOC/SDE/ENG students)\nCompleted 80 MCs , including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n\n(For SOC/SDE/ENG students)\nCompleted 80 MCs and obtain a minimum CAP of 3.50.\n\nCohort 2012 onwards:\n(Not applicable to SOC/SDE/ENG students)\nCompleted 80 MCs , including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n\n(For SOC/SDE/ENG students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4211", + "title": "Online Journalism", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "NM4880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\n(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n(2) NM3211 News Reporting and Editing.\n\nCohort 2012 onwards:\n(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(2) NM3211 News Reporting and Editing.", + "corequisite": "" + }, + { + "moduleCode": "NM4212", + "title": "Race, Media and Representation", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: (1) Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2101\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2101", + "corequisite": "" + }, + { + "moduleCode": "NM4213", + "title": "Digital Economies", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM3206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before: (Not applicable to SOC students) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track. \n\n(For SOC students) Completed 80 MCs and obtain a minimum CAP of 3.50. \n\nCohort 2012-2019: (Not applicable to SOC students) Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track. \n\n(For SOC students) Completed 80 MCs and obtain a minimum CAP of 3.20.\n\nCohort 2020 onwards: (Not applicable to SOC students) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours t7rack. \n\n(For SOC students) Completed 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4219", + "title": "New Media in Health Communication", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track. \n\nCohort 2012-2019: Completed 80 MCs, including 28 MCs in NM or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4223", + "title": "New Media and Organizations", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "NM5213 and NM5213R", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track. \n\nCohort 2012-2019: Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4225", + "title": "Speculative and Critical Design", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(Not applicable to SOC/SDE/ENG students)\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n\n(For SOC/SDE/ENG students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4227", + "title": "Game Studies", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM3227 Critical Game Design", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(Not applicable to SOC/SDE/ENG students) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. (For SOC/SDE/ENG students) Completed 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4228", + "title": "Crisis Communication", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track. \n\nCohort 2012-2019: Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4230", + "title": "Communication for Social Change", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n\nCohort 2012-2019: Completed 80 MCs, including 28 MCs in NM or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4231", + "title": "Advanced Digital Storytelling", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or been on the Honours track.\nNM3230", + "corequisite": "" + }, + { + "moduleCode": "NM4238", + "title": "Software Studies", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM3238", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nCompleted 80MCs, including 28MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n(For SOC students)\nCompleted 80 MCs and obtain a minimum CAP of 3.50.\n\nCohort 2012 onwards:\nCompleted 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(For SOC students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4239", + "title": "Digital Propaganda and Public Opinion", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards:\nCompleted 80MCs, including 28MCs in NM, with a\nminimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4240", + "title": "Risk Perception and Communication", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards\nCompleted 80MCs, including 28MCs in NM, with a\nminimum CAP of 3.2 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4242", + "title": "Critical Perspectives on Technology", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM3207", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(Not applicable to SOC/SDE/ENG students)\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(For SOC/SDE/ENG students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4243", + "title": "Writing Commentaries and Columns", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2220 Introduction to Media Writing", + "corequisite": "" + }, + { + "moduleCode": "NM4244", + "title": "Sex in the Media", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. \n(2) NM2101 or NM2103 or NM2104", + "corequisite": "" + }, + { + "moduleCode": "NM4245", + "title": "Political Communication and Digital Media", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM3240", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(Not applicable to SOC/SDE/ENG students)\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(For SOC/SDE/ENG students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4246", + "title": "Learning Innovation in the Digital Age", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "NM3204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(Not applicable to SOC/SDE/ENG students)\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(For SOC/SDE/ENG students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4247", + "title": "Creative Writing in the Marketplace", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n(2) NM2220 Introduction to Media Writing", + "corequisite": "" + }, + { + "moduleCode": "NM4248", + "title": "Lifestyle Writing", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2220 Introduction to Media Writing", + "corequisite": "" + }, + { + "moduleCode": "NM4249", + "title": "Media & Audiences", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards: Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4250", + "title": "Data Journalism and Analysis", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track. (2) NM2220 Introduction to Media Writing", + "corequisite": "" + }, + { + "moduleCode": "NM4251", + "title": "Critical Theory and Cultural Studies in New Media", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "NM4881C Critical Theory and Cultural Studies in New Media", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\n(1) Completed 110 MCs including 60 MCs of NM major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n(2) Pass NM4101 or NM4102\n\nCohort 2016 onwards:\n(1) Completed 110 MCs including 44 MCs of NM major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n(2) Pass NM4101 or NM4102", + "corequisite": "NM4102" + }, + { + "moduleCode": "NM4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "NM4401 or XFA4403", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in NM, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in NM, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4851", + "title": "Department Exchange Module", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM4852", + "title": "Department Exchange Module", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM4880", + "title": "Topics in CNM", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2006 and before: Read and passed a minimum of 80MCs. \nCohort 2007 onwards:Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.5 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4880G", + "title": "Election Reporting", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards: Completed 80MCs, including\n28MCs in NM, with a minimum CAP of 3.20 or be on\nthe Honours track.\n\nNM2220 Introduction to Media Writing", + "corequisite": "" + }, + { + "moduleCode": "NM4881", + "title": "Topics in Media Studies", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2006 and before: Read and passed a minimum of 80MCs.\nCohort 2007 onwards: Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.5 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4881A", + "title": "Topics in Media Studies: Social Media", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n\nCohort 2012 onwards:\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4881D", + "title": "Media, Rhetoric, and the Public Sphere", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Complete 80MCs, including 28MCs in NM or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Complete 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4881E", + "title": "Photography, Visual Rhetoric, and Public Culture", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 onwards:\nCompleted 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4882A", + "title": "Topics in Media Design: Playable Worlds", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\n(Not applicable to SOC students)\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n\n(For SOC students)\nCompleted 80 MCs and obtain a minimum CAP of 3.50.\n\nCohort 2012 onwards:\n(Not applicable to SOC students)\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.\n\n(For SOC students)\nCompleted 80 MCs and obtain a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "NM4883", + "title": "Topics in Communication Management", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.5 or be on the Honours track\n(2) NM2219", + "corequisite": "" + }, + { + "moduleCode": "NM4883D", + "title": "New Media Production and Public Engagement", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nCompleted 80 MCs, including 28 MCs in NM, with a minimum CAP of 3.50 or be on the Honours track.\n\nCohort 2012 onwards:\nCompleted 80 MCs and obtain a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM4883F", + "title": "Financial Journalism", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: (1) Completed 80MCs, including 28MCS in NM or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. \n(2) NM2220 Introduction to Media Writing\n\nCohort 2020 onwards: (1) Completed 80MCs, including 28MCS in NM, with a minimum CAP of 3.20 or be on the Honours track. \n(2) NM2220 Introduction to Media Writing", + "corequisite": "" + }, + { + "moduleCode": "NM4883G", + "title": "Financial Communication", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2019: (1) Completed 80MCs, including 28MCs in NM or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: (1) Completed 80MCs, including 28MCs in NM, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "NM5201", + "title": "State and Civil Society in the Information Age", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "IF4880A, IF5201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5201R", + "title": "State and Civil Society in the Information Age", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "IF4880A, IF5201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) For CNM major who has accumulated 120 MCs\n(b) For CNM, FASS, and SoC graduate students.", + "corequisite": "" + }, + { + "moduleCode": "NM5204", + "title": "Computer-Mediated Environments", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "IF5204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5204R", + "title": "Computer-Mediated Environments", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "IF5204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For CNM undergraduate major who has accumulated 120 MC, or for FASS and SoC graduate students.", + "corequisite": "" + }, + { + "moduleCode": "NM5205", + "title": "Cognition and Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5205R", + "title": "Cognition and Media", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For CNM major who has accumulated 120 MCs.\nFor CNM, FASS, and SoC graduate students", + "corequisite": "" + }, + { + "moduleCode": "NM5209", + "title": "Interactive Media Arts", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5209R", + "title": "Interactive Media Arts", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) For CNM major who has accumulated 120 MCs\n\n(b) For CNM, FASS, and SoC graduate students.", + "corequisite": "" + }, + { + "moduleCode": "NM5212R", + "title": "Theories of Public Relations", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(a) For CNM major who has accumulated 120 MCs\n(b) For CNM, FASS, and SoC graduate students", + "corequisite": "" + }, + { + "moduleCode": "NM5216", + "title": "Advanced Health Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5216R", + "title": "Advanced Health Communication", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5218", + "title": "Cultural Policy", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5218R", + "title": "Cultural Policy", + "moduleCredit": 5, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "IF5660", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5881", + "title": "Topics in Media Studies", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5882", + "title": "Topics in Media Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM5883", + "title": "Topics in Communication Management", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6101", + "title": "Advanced Theories in Cnm", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6103", + "title": "Quantitative Research Methods in Communications and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6104", + "title": "Qualitative Research Methods in Communications and New Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6201", + "title": "Communication as Culture", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "IF6201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6211", + "title": "Political Communication", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "IF6660", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NM6882", + "title": "Advanced Topics in Media Design", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Successful completion of 5000-level CNM media design module (or equivalent).", + "corequisite": "" + }, + { + "moduleCode": "NM6882A", + "title": "Intelligent Interactive Media", + "moduleCredit": 4, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Successful completion of 5000-level CNM media design module (or equivalent). Note: This module is intended for advanced graduate students from all faculties and thus does not require a background in computer science and engineering (although it will be possible for such students to develop and evaluate more technically advanced\nprototypes).", + "corequisite": "" + }, + { + "moduleCode": "NUR1107A", + "title": "Nursing Practice Experience 1.1", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR1107 Clinical Practicum 1.1", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR1114 Fundamentals of Nursing" + }, + { + "moduleCode": "NUR1107B", + "title": "Clinical Practice: Community Care I", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR1107A Nursing Practice Experience 1.1", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR1114A Fundamentals of Care" + }, + { + "moduleCode": "NUR1108A", + "title": "Nursing Practice Experience 1.2", + "moduleCredit": 7, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1108B", + "title": "Clinical Practice: Medical/Surgical I", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR1108A Nursing Practice Experience 1.2", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1110", + "title": "Effective Communication for Health Professionals", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR1114 Fundamentals of Nursing" + }, + { + "moduleCode": "NUR1110A", + "title": "Communication and Cultural Diversity", + "moduleCredit": 3, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR1110 Effective Communication for Health Professionals", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1113", + "title": "Health and Wellness for Older Adults", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1113A", + "title": "Healthy Ageing and Well-being", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR1201C Health Continuum for Older Adults", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1114", + "title": "Fundamentals of Nursing", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR1110 Effective Communication for Health Professionals, NUR1113 Health and Well-being for Older Adults, NUR1107A Nursing Practice Experience 1.1" + }, + { + "moduleCode": "NUR1114A", + "title": "Fundamentals of Care", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR1114 Fundamentals of Nursing", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1117", + "title": "Anatomy and Physiology I", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "AY1104 Anatomy\nPY1105 Physiology I\nPY1106 Physiology II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1118", + "title": "Anatomy and Physiology II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "AY1104 Anatomy\nPY1105 Physiology I\nPY1106 Physiology II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1119", + "title": "Medical-Surgical Nursing I", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2114 Medical/Surgical Nursing is precluded.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR1114 Fundamentals of Nursing to replace existing pre-requisite of NUR1108.", + "corequisite": "NUR1120 Comprehensive Health Assessment to replace existing co-requisites of NUR2106 and NUR2117." + }, + { + "moduleCode": "NUR1120", + "title": "Comprehensive Health Assessment", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2115 Comprehensive Health Assessment is precluded.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1121", + "title": "Pathophysiology and Pharmacology for Nurses I", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2117 Pathophysiology and Pharmacology I is precluded.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1122C", + "title": "Health Assessment", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1123", + "title": "Anatomy, Physiology and Physical Assessment I", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR1117 Anatomy and Physiology I\nNUR1120 Comprehensive Health Assessment", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1124", + "title": "Anatomy, Physiology and Physical Assessment II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "NUR1118 Anatomy and Physiology II\nNUR1120 Comprehensive Health Assessment", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1125", + "title": "Pathophysiology, Pharmacology and Nursing Practice I", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "NUR2201C Pathophysiology, Pharmacology and Nursing Practice I", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1126", + "title": "Pathophysiology, Pharmacology and Nursing Practice II", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "NUR2202C Pathophysiology, Pharmacology and Nursing\nPractice II", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1127", + "title": "Psychology for Nurses", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "NUR2122 Psychology for Nurses", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1201C", + "title": "Health Continuum for Older Adults", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR1113", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR1202C", + "title": "Clinical Experience I", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2106A", + "title": "Nursing Practice Experience 2.1", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2106 Clinical Practicum 2.1 is precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR2116 Medical/Surgical Nursing II, NUR2118 Pathophysiology and Pharmacology for Nurses II" + }, + { + "moduleCode": "NUR2106B", + "title": "Clinical Practice: Medical/Surgical II", + "moduleCredit": 3, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "NUR2106A Nursing Practice Experience 2.1", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2107A", + "title": "Nursing Practice Experience 2.2", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2107 Clinical Practicum 2.2 is precluded", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR2113 Mental Health Nursing, NUR2121 Maternal and Child Health Nursing" + }, + { + "moduleCode": "NUR2107B", + "title": "Clinical Practice: Specialty Care", + "moduleCredit": 7, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "NUR2107A Nursing Practice Experience 2.2", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2113", + "title": "Mental Health Nursing", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR1116 Psychology for Health Professionals", + "corequisite": "" + }, + { + "moduleCode": "NUR2116", + "title": "Medical-Surgical Nursing II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR1108A Nursing Practice Experience 1.2 to replace existing pre-requisite.", + "corequisite": "NUR2118 Pathophysiology & Pharmacology for Nurses II, NUR2106A Nursing Practice Experience 2.1" + }, + { + "moduleCode": "NUR2118", + "title": "Pathophysiology and Pharmacology for Nurses II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR1121 Pathophysiology and Pharmacology for Nurses 1 is now a pre-requisite.", + "corequisite": "" + }, + { + "moduleCode": "NUR2120", + "title": "Professional Nursing Practice, Ethics and Law", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR1110 Effective Communication for Health\nProfessionals", + "corequisite": "" + }, + { + "moduleCode": "NUR2121", + "title": "Maternal and Child Health Nursing", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR1115 Maternal and Child Health Nursing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR1114 Fundamentals of Nursing", + "corequisite": "" + }, + { + "moduleCode": "NUR2122", + "title": "Psychology for Nurses", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR1116", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2123", + "title": "Pathophysiology, Pharmacology and Nursing Practice III", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "NUR3203C", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2124", + "title": "Healthy Community Living", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2125", + "title": "Pathophysiology, Pharmacology and Nursing Practice II", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2202C Pathophysiology, Pharmacology and Nursing\nPractice II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2201C", + "title": "Pathophysiology, Pharmacology and Nursing Practice I", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR1119 and NUR1121", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2202C", + "title": "Pathophysiology, Pharmacology and Nursing Practice II", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR2116 and NUR2118", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2203C", + "title": "Clinical Experience II", + "moduleCredit": 10, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2204C", + "title": "Women and Children Health", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR2121", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2441A", + "title": "Cross-cultural Experience for Nursing Students I", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR2441B Cross-cultural Experience for Nursing Students II (4MC)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For BSc (Nursing) and BSc (Nursing)(Honours) students\nonly.", + "corequisite": "" + }, + { + "moduleCode": "NUR2441B", + "title": "Cross-cultural Experience for Nursing Students II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR2441A Cross-cultural Experience for Nursing Students I (2MC)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For BSc (Nursing) and BSc (Nursing)(Honours) students only.", + "corequisite": "" + }, + { + "moduleCode": "NUR2442", + "title": "Cross-cultural Experience for Nursing Students (OCIP)", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For BSc (Nursing) and BSc (Nursing)(Honours) students only.", + "corequisite": "" + }, + { + "moduleCode": "NUR2500", + "title": "Applied Pathophysiology and Clinical Pharmacology", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2501", + "title": "Clinical Health Assessment and Reasoning", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2502", + "title": "Healthcare Policy", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR2503", + "title": "Global and Community Health", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3103", + "title": "Clinical Decision Making", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR2116 Medical/Surgical Nursing II", + "corequisite": "" + }, + { + "moduleCode": "NUR3105A", + "title": "Nursing Practice Experience 3.1", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR3105 Clinical Practicum 3.1 is precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3105B", + "title": "Clinical Practice: Community Care II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "NUR3105A Nursing Practice Experience 3.1", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3106B", + "title": "Clinical Practice: Medical/Surgical II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3109", + "title": "Introduction to Research, Evidence and Nursing Practice", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3113", + "title": "Medical-Surgical Nursing III", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3114", + "title": "Leadership and Management", + "moduleCredit": 3, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3116", + "title": "Transition-to-Practice", + "moduleCredit": 9, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR3116A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR3105 Clinical Practicum 3.1", + "corequisite": "NUR3115 Issues for Contemporary Nursing Practice" + }, + { + "moduleCode": "NUR3116A", + "title": "Transition to Professional Practice Experience", + "moduleCredit": 10, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "NUR3116 Transition-to-Practice is precluded.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "NUR3118 Consolidated Clinical Simulation Nursing Practice is now a co-requisite." + }, + { + "moduleCode": "NUR3116B", + "title": "Transition to Professional Practice Experience", + "moduleCredit": 12, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "NUR3116A Transition to Professional Practice Experience", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3117", + "title": "Community Integrated Health Care", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3117A", + "title": "Public and Community Health", + "moduleCredit": 3, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR3117 Community Integrated Health Care", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3118", + "title": "Consolidated Clinical Simulation Nursing Practice", + "moduleCredit": 3, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR3105A Nursing Practice Experience 3.1", + "corequisite": "NUR3114 Leadership and Management NUR3116A Transition to Professional Practice Experience" + }, + { + "moduleCode": "NUR3119", + "title": "Palliative and End-of-Life Care", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3120", + "title": "Pathophysiology, Pharmacology and Nursing Practice III", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "NUR3203C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3202C", + "title": "Research and Evidence-based Healthcare", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR3109", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3203C", + "title": "Pathophysiology, Pharmacology and Nursing Practice III", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3204C", + "title": "Clinical Experience III", + "moduleCredit": 3, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3205C", + "title": "Clinical Experience IV", + "moduleCredit": 10, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3206C", + "title": "Transition to Practice", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3206D", + "title": "Transition to Practice", + "moduleCredit": 9, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3500", + "title": "Practice of Palliative and End-of-Life Care", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3501", + "title": "Professionalism, Ethics and Law in Healthcare", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3502", + "title": "Teaching and Learning in Clinical Practice", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3503", + "title": "Leadership, Innovation and Change in Healthcare", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3504", + "title": "Chronic Disease Management", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3505", + "title": "Research Methodology and Statistics", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3506", + "title": "Translation of Evidence into Practice", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR3507", + "title": "Clinical Practice Development Project", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR4101B", + "title": "Evidence-based Health Care Practice", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR4101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR3109", + "corequisite": "" + }, + { + "moduleCode": "NUR4102B", + "title": "Consolidated Clinical Practice", + "moduleCredit": 10, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "NUR4102\nNUR4102A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR4103B", + "title": "Applied Research Methods", + "moduleCredit": 6, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "NUR4103 Applied Research Methods is precluded\nNUR4103A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR4104B", + "title": "Honours Project in Nursing", + "moduleCredit": 14, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "NUR4104", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Module codes of Consolidated Clinical Practicum and Applied Research Methods will be updated to NUR4102A and NUR4103A respectively.", + "corequisite": "" + }, + { + "moduleCode": "NUR5001", + "title": "Evidence Based Practice", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5002", + "title": "Statistics for Health Research", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5003", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5004", + "title": "Leadership in healthcare", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5005", + "title": "Seminar in Translational Medicine", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5009", + "title": "Principles & Practice of Palliative Care", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5013", + "title": "Grant Writing and Writing for Publications", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5201", + "title": "Professional Development and Transformation", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5203", + "title": "Evidence-based Healthcare", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5207", + "title": "Ethics in Healthcare", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5301", + "title": "Approaches to Clinical Symptom", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5302", + "title": "Advanced Gerontological Nursing (Adult Health)", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5303", + "title": "Integrated Primary and Community Care (Adult Health)", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5311", + "title": "Clinical Practicum I (AH, AC & MH)", + "moduleCredit": 12, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5312", + "title": "Clinical Practicum II (AH, AC & MH)", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5401", + "title": "Applied Psychopathology", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5402", + "title": "Advanced Psychosocial Interventions", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5502", + "title": "Advanced Critical Care Nursing I", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5503", + "title": "Advanced Critical Care Nursing II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5512", + "title": "Clinical Practicum II (Acute Care)", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5601", + "title": "Advanced Health Assessment (Paediatrics)", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5602", + "title": "Applied Pathophysiology (Paediatrics)", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5606", + "title": "Integrated Primary and Community Care for Paediatrics", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5607", + "title": "Approaches to Clinical Signs and Symptoms(Paediatrics)", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR5601 Advanced Health Assessment (Paediatrics)\nNUR5602 Applied Pathophysiology (Paediatrics)", + "corequisite": "" + }, + { + "moduleCode": "NUR5608", + "title": "Management of the Acute Paediatric Patients", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR5601 Advanced Health Assessment (Paediatrics)\nNUR5602 Applied Pathophysiology (Paediatrics)", + "corequisite": "" + }, + { + "moduleCode": "NUR5609", + "title": "Integrated Clinical Decision Making I (Paediatric)", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5610", + "title": "Integrated Clinical Decision Making II (Paediatric)", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5611", + "title": "Clinical Practicum I (PAED)", + "moduleCredit": 12, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5612", + "title": "Clinical Practicum II (Paediatrics)", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR5601 Advanced Health Assessment (Paediatrics)\nNUR5602 Advanced Pathophysiology (Paediatrics)", + "corequisite": "" + }, + { + "moduleCode": "NUR5613", + "title": "Paediatric Care Across Care Continuum", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5701", + "title": "Learning Needs Analysis", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5702", + "title": "Curriculum Design", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5703", + "title": "Assessment and Evaluation", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5704", + "title": "Capstone Project", + "moduleCredit": 2, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5801G", + "title": "Integrated Clinical Decision Making and Management I", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5802G", + "title": "Integrated Clinical Decision Making and Management II", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5803G", + "title": "Community Health Practice", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5804G", + "title": "Chronic Disease Management in the Community", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5805G", + "title": "Chronic Wound Management in the Community", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5806G", + "title": "Evidence-based Practice", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5807", + "title": "Professional Development and Ethical Healthcare", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5808", + "title": "Adult Care Across Care Continuum", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5811A", + "title": "Clinical Practicum I", + "moduleCredit": 10, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5811B", + "title": "Clinical Practicum II", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR5811C", + "title": "Clinical Practicum III", + "moduleCredit": 16, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6001", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6002", + "title": "Qualitative Research in Health Sciences", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6003", + "title": "Research Methods", + "moduleCredit": 8, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6004", + "title": "Systematic Review and Meta-Analysis", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6005", + "title": "Measurement Theory and Instrument Validation", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6006", + "title": "Intervention Research in Nursing and Health Sciences", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "NUR6007", + "title": "Research Leadership and Professional Development", + "moduleCredit": 4, + "department": "Alice Lee Center for Nursing Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OL1000", + "title": "Oral Biology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OMS2100", + "title": "Oral & Maxillofacial Medicine, Pathology & Radiology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "a. Anatomy (AY1111)\nb. Oral Biology [Dental Anatomy & Histology] (OL1000)\nc. Microbiology (MD2112A)\nd. Oral Radiology/Radiation Physics (RY2000)", + "corequisite": "" + }, + { + "moduleCode": "OMS3010", + "title": "Oral & Maxillofacial Surgery", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OMS3100", + "title": "Oral & Maxillofacial Medicine, Pathology & Radiology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "a. Anatomy (AY1111)\nb. Oral Biology [Dental Anatomy & Histology] (OL1000)\nc. Microbiology (MD2112A)\nd. Oral Radiology/Radiation Physics (RY2000)", + "corequisite": "" + }, + { + "moduleCode": "OMS4000", + "title": "Oral & Maxillofacial Surgery", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OMS4010", + "title": "Oral & Maxillofacial Surgery", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OMS4020", + "title": "Oral Medicine", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5001", + "title": "Independent Study Module", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "OT5001A & OT5001B", + "attributes": [ + false, + false, + false, + false, + false, + true, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5001A", + "title": "Independent Study Module: Subsea Engineering", + "moduleCredit": 8, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "OT5001 & OT5001B", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5001B", + "title": "Independent Study Module: Petroleum Engineering", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "OT5001 & OT5001A", + "attributes": [ + false, + false, + false, + false, + false, + true, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5001C", + "title": "Independent Study Module: Offshore Structures", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "OT5001, OT5001A, OT5001B", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5101", + "title": "Exploration and Production of Petroleum", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4-standing or higher", + "corequisite": "" + }, + { + "moduleCode": "OT5102", + "title": "Oil & Gas Technology", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5201", + "title": "Marine Statics & Dynamics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "CE5307 Offshore Hydrodynamics (title before AY2010/2011),\nCE5887 Topics in Offshore Engineering: Marine Statics & Dynamics (Sem1, AY2010/2011)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE-4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "OT5202", + "title": "Analysis & Design of Fixed Offshore Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "TCE5202", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2155 or CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "OT5202A", + "title": "Analysis of Fixed Offshore Structures", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5202B", + "title": "Design of Fixed Offshore Structures", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5203", + "title": "Analysis & Design of Floating Offshore Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "OT5201 Marine Statics and Dynamics (as of AY2011/12 onwards) or an equivalent, or CE5887 Topics in Offshore Engineering: Marine Statics & Dynamics (in AY2010/2011)", + "corequisite": "" + }, + { + "moduleCode": "OT5203A", + "title": "Analysis of Floating Offshore Structures", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5203B", + "title": "Design of Floating Offshore Structures", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5204", + "title": "Offshore pipelines, risers and moorings", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "CE5711, CE5712 and OT5205", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CVE, EVE & ME Year 3/ Year 4 – standing, or graduate-standing", + "corequisite": "" + }, + { + "moduleCode": "OT5204A", + "title": "Pipeline System", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2, + 3, + 4 + ], + "preclusion": "CE5711, CE5712 and OT5204", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5204B", + "title": "Mooring and Riser Systems", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "CE5711, CE5712 and OT5204", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5205", + "title": "Offshore Pipelines", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 standing", + "corequisite": "" + }, + { + "moduleCode": "OT5206", + "title": "Offshore Foundations", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE5206", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE2112 Basic Undergraduate Soil Mechanics", + "corequisite": "" + }, + { + "moduleCode": "OT5206A", + "title": "Shallow Offshore Foundations", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Basic undergraduate soil mechanics and foundation engineering", + "corequisite": "" + }, + { + "moduleCode": "OT5206B", + "title": "Deep Offshore Foundations", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Basic undergraduate soil mechanics and foundation engineering", + "corequisite": "" + }, + { + "moduleCode": "OT5207", + "title": "Arctic Offshore Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 standing", + "corequisite": "" + }, + { + "moduleCode": "OT5208", + "title": "Fatigue and Fracture for Offshore Structures", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4257: Linear Finite Element Methods or Equivalent", + "corequisite": "" + }, + { + "moduleCode": "OT5301", + "title": "Subsea Systems Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5302", + "title": "Flow Assurance", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "OT5882A Topics in Subsea Engineering - Flow Assurance", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5303", + "title": "Subsea Control", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5304", + "title": "Subsea Construction & Operational Support", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5305", + "title": "Pressures Surges in Oil & Gas Flow Systems", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ME5708", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "ME3233 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "OT5400", + "title": "Engineering Fundamentals for Petroleum Engineering", + "moduleCredit": 0, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5401", + "title": "Geoscience for Petroleum Exploration", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5401A", + "title": "General and Sedimentary Geology", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5401B", + "title": "Petroleum Geology", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5402", + "title": "Geophysical Imaging of the Earth Interior", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "OT5402A and OT5402B\n(i.e. Both completed as a pair)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5402A", + "title": "Seismic Acquisition", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5402B", + "title": "Seismic Processing and Imaging", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5403", + "title": "Petrophysics and Downhole Measurements", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5403A", + "title": "Petrophysics for Petroleum Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5403B", + "title": "Downhole Measurements for Petroleum Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5404", + "title": "Reservoir Characterization and Rock Physics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5405", + "title": "Enhanced Oil Recovery", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "OT5405A and OT5405B\n(i.e. Both completed as a pair)", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5405A", + "title": "Fundamentals of Enhanced Oil Recovery", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5405B", + "title": "Enhanced Oil Recovery Methods and Application", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5406", + "title": "Petroleum Production Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5406A", + "title": "Petroleum Production Engineering", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5406B", + "title": "Petroleum Production Engineering - Wellbore", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5407", + "title": "Petroleum Geomechanics", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5408", + "title": "Unconventional and Renewable Energy Resources", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CVE4, EVE4, MPE4, CHE4 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "OT5409", + "title": "Drilling and Completion Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5881", + "title": "Topics in Offshore Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 standing", + "corequisite": "" + }, + { + "moduleCode": "OT5882", + "title": "Topics in Subsea Engineering", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental Approval (depending on the title)", + "corequisite": "" + }, + { + "moduleCode": "OT5882A", + "title": "Topics in Subsea Engineering - Flow Assurance", + "moduleCredit": 4, + "department": "Mechanical Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5883", + "title": "Topics in Petroleum Engineering", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "OT5883B", + "title": "Topics in Petroleum Engineering: Petroleum Reservoir", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5883C", + "title": "Topics in Petroleum Engineering: Geophysical Inverse methods", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "Basic programming and mathematics are required.", + "corequisite": "" + }, + { + "moduleCode": "OT5901", + "title": "Reservoir Fluid Characterization", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5902", + "title": "Petroleum Geoscience & Drilling", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5903", + "title": "From Reservoir to Wellhead", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5904", + "title": "Petroleum Process", + "moduleCredit": 5, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5905", + "title": "Petroleum Fluid Valorisation", + "moduleCredit": 3, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5906", + "title": "Offshore Field Architecture and Subsea System", + "moduleCredit": 3, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5907", + "title": "Design of Offshore Structures", + "moduleCredit": 3, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5908", + "title": "Subsea Umbilicals, Risers and Flowlines Design", + "moduleCredit": 3, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5909", + "title": "From Construction to Decommissioning", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5910", + "title": "Special Topics on Energy", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5911", + "title": "Offshore Materials, Welding and Corrosion", + "moduleCredit": 2, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5912", + "title": "Development of Offshore Upstream Projects", + "moduleCredit": 7, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OT5913", + "title": "Professional Integration (Internship)", + "moduleCredit": 12, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "OY3000", + "title": "Oral Pathology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PA1113", + "title": "Basic Pharmacology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AY1130", + "corequisite": "PY1131" + }, + { + "moduleCode": "PA1113A", + "title": "Basic Pharmacology", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "NUR5102 Advanced Pathophysiology", + "corequisite": "" + }, + { + "moduleCode": "PA2106", + "title": "Pharmacology 1", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1908", + "corequisite": "" + }, + { + "moduleCode": "PA2106A", + "title": "Pharmacology 1", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PA2107", + "title": "Pharmacology 2", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP2106", + "corequisite": "" + }, + { + "moduleCode": "PA2107A", + "title": "Pharmacology 2", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PA2131", + "title": "Pharmacology", + "moduleCredit": 1, + "department": "Pharmacology", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "BDS I year Pass", + "corequisite": "" + }, + { + "moduleCode": "PC1141", + "title": "Introduction to Classical Mechanics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "STUDENTS WHO HAVE PASSED PC1431 OR PC1431FC or PC1431X OR PC1433 ARE NOT ALLOWED TO TAKE THIS MODULE.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "‘A' level or H2 pass in Physics or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1142", + "title": "Introduction to Thermodynamics and Optics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "STUDENTS WHO HAVE PASSED PC1431 OR PC1431FC or PC1431X ARE NOT ALLOWED TO TAKE THIS MODULE.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "‘A' level or H2 pass in Physics or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1143", + "title": "Introduction to Electricity & Magnetism", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have passed PC1432/PC1432X are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "‘A' level or H2 pass in Physics or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1144", + "title": "Introduction to Modern Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have passed PC1432/PC1432X are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "‘A' level or H2 pass in Physics or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1221", + "title": "Fundamentals of Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "A' LEVEL OR H2 PASS IN PHYSICS OR PC1141, OR PC1142 OR PC1431 OR PC1431FC or PC1431X OR PC1221FC or PC1221X, YSC1213", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'O' level pass in Physics or Combined Science (Physics & Chemistry OR Physics & Biology).", + "corequisite": "" + }, + { + "moduleCode": "PC1221X", + "title": "Fundamentals of Physics 1", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "A' level or H2 pass in Physics or PC1141, or PC1142 or PC1431 or PC1431FC or PC1431X or PC1221 or PC1221FC", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'O' level pass in Physics or Combined Science (Physics & Chemistry OR Physics & Biology) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC1222", + "title": "Fundamentals of Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "'A' Level OR H2 Pass in Physics or PC1143, or PC1144 or PC1432/PC1432X, YSC1213", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'O' level pass in Physics or Combined Science (Physics & Chemistry OR Physics & Biology).", + "corequisite": "" + }, + { + "moduleCode": "PC1222X", + "title": "Fundamentals of Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "'A' level or H2 pass in Physics or PC1222 or PC1143, or PC1144 or PC1432 or PC1432X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "'O' level pass in Physics or Combined Science (Physics & Chemistry OR Physics & Biology) or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC1322", + "title": "Understanding the Universe", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1031. Students majoring in Physics are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC1326", + "title": "Physics in the Life Sciences", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GET1013. Students majoring in Physics are not allowed to take this module", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC1327", + "title": "Science of Music", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEK1519, GEH1030", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC1346", + "title": "A Basic Introduction to Medical Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "GEH1032/GEK1540", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC1421", + "title": "Physics for Life Sciences", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "N.A.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Life-sciences majors who have at least an ‘O’ Level pass in Physics", + "corequisite": "N.A." + }, + { + "moduleCode": "PC1431", + "title": "Physics IE", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students majoring in Physics or students who have passed in PC1141 or PC1142 or PC1433 or PC1431FC or PC1431X are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students from FOE (i.e. Civil Eng, Environmental Eng, Common Engineering, Mechanical Eng, Bioengineering, Industrial & Systems Eng and Material Science & Eng) with ‘A’ level or H2 pass in Physics; or 'A' level or H2 pass in Physics; or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1431X", + "title": "Physics IE", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students majoring in Physics. Students must not have passed PC1431 or PC1431FC.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students from FOE (i.e. Civil Eng, Environmental Eng, Common Engineering, Mechanical Eng, Bioengineering, Industrial & Systems Eng and Material Science & Eng) with ‘A’ level or H2 pass in Physics; or 'A' level or H2 pass in Physics", + "corequisite": "" + }, + { + "moduleCode": "PC1432", + "title": "Physics IIE", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students majoring in Physics or students who have passed in PC1143 or PC1144 or PC1432X are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students from FOE ( i.e. Computer Eng, Common Engineering, Bioengineering, Industrial & Systems Eng and Material Science & Eng) with ‘A’ level or H2 pass in Physics; or 'A' level or H2 pass in Physics; or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1432X", + "title": "Physics IIE", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "Students majoring in Physics or students who have passed in PC1143 or PC1144 or PC1432 are not allowed to take this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students from FOE ( i.e. Computer Eng, Common\nEngineering, Bioengineering, Industrial & Systems Eng and Material Science & Eng) with ‘A’ level or H2 pass in Physics; or 'A' level or H2 pass in Physics; or PC1221/PC1221FC/PC1221X & PC1222/PC1222X", + "corequisite": "" + }, + { + "moduleCode": "PC1433", + "title": "Mechanics and Waves", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "STUDENTS WHO HAVE PASSED EITHER PC1141 OR PC1431 OR PC1431FC OR PC1431X ARE NOT ALLOWED TO TAKE THIS MODULE.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A Level or H2 Physics. This module is only for ESP students.", + "corequisite": "" + }, + { + "moduleCode": "PC1601", + "title": "Physics Advanced Placement", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC1602", + "title": "Physics Advanced Placement", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC2020", + "title": "Electromagnetics for Electrical Engineers", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PC2131, PC2232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1511 and MA1512", + "corequisite": "" + }, + { + "moduleCode": "PC2130", + "title": "Quantum Mechanics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have passed PC2130B are not allowed to take this module, YSC3210", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have either passed (PC1144 or PC1432/PC1432X) and (MA1101R or MA1513 or MA1508E) and (MA1102R or MA1505 or MA1511 or MA1512) or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "PC2130B", + "title": "Applied Quantum Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who passed PC2130 cannot take this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who passed one of the following modules. PC1144 or PC1432/PC1432X or PC1433", + "corequisite": "" + }, + { + "moduleCode": "PC2131", + "title": "Electricity & Magnetism I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "YSC3211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have either passed (PC1143 or PC1432/PC1432X) and (MA1101R or MA1513 or MA1508E) and (MA1102R or MA1505 or MA1511 or MA1512) or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "PC2132", + "title": "Classical Mechanics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have either passed (PC1141 or PC1431/ PC1431X or PC1433) and (MA1101R or MA1513 or MA1508E) and (MA1102R or MA1505 or MA1511 or MA1512) or equivalent.", + "corequisite": "" + }, + { + "moduleCode": "PC2133", + "title": "Applied Solid State Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students who have passed PC3235 are not allowed to take PC2133", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC1144 or PC1433.", + "corequisite": "" + }, + { + "moduleCode": "PC2134", + "title": "Mathematical Mtds in Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1511 and MA1512", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1101R and MA1102R or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC2193", + "title": "Experimental Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed one of these modules PC1141, PC1142, PC1143, PC1144, PC1431, PC1431FC, PC1431X, PC1432/PC1432X or PC1433.", + "corequisite": "" + }, + { + "moduleCode": "PC2230", + "title": "Thermodynamics and Statistical Mechanics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1142, PC1144 or PC1431/PC1431FC/PC1431X, and (MA1102R or equivalent)", + "corequisite": "" + }, + { + "moduleCode": "PC2232", + "title": "Physics for Electrical Engineers", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EE2011", + "corequisite": "N.A." + }, + { + "moduleCode": "PC2239", + "title": "Special Problems in Undergrad Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC2267", + "title": "Biophysics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1143 or PC1432/PC1432X or PC1421 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC2288", + "title": "Basic UROPS in Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "PC1141 or PC1142, and Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC2289", + "title": "Basic UROPS in Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "PC1141 or PC1142; and Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC3130", + "title": "Quantum Mechanics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC2130 or PC2130B, and PC2134 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC3193", + "title": "Experimental Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2193", + "corequisite": "" + }, + { + "moduleCode": "PC3231", + "title": "Electricity & Magnetism II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "ESP2104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2131", + "corequisite": "" + }, + { + "moduleCode": "PC3232", + "title": "Nuclear & Particle Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PC3232B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2130 or PC2130B", + "corequisite": "" + }, + { + "moduleCode": "PC3232B", + "title": "Applied Nuclear Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "PC3232", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1144 or PC1432/PC1432X or PC2232 or PC2020 or PC2130B", + "corequisite": "" + }, + { + "moduleCode": "PC3233", + "title": "Atomic & Molecular Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2130 or PC2130B", + "corequisite": "" + }, + { + "moduleCode": "PC3235", + "title": "Solid State Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "EE3406 or PC2133", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2130 or PC2130B", + "corequisite": "" + }, + { + "moduleCode": "PC3236", + "title": "Computational Methods in Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed PC2134 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC3238", + "title": "Fluid Dynamics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC2134 or PC3236 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC3239", + "title": "Special Problems in Undergrad Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental Approval.", + "corequisite": "" + }, + { + "moduleCode": "PC3240", + "title": "Atmosphere, Ocean and Climate Dynamics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3238 or by departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC3241", + "title": "Solid State Devices", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "EE2004", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2131 or PC2231 or PC3235 or MLE2104 or PC2133 or EE2005.", + "corequisite": "" + }, + { + "moduleCode": "PC3242", + "title": "Nanofabrication and Nanocharacterization", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "EE4411", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PC2131 or PC3235 or MLE2104 or PC2133 or EE2005", + "corequisite": "" + }, + { + "moduleCode": "PC3243", + "title": "Photonics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2131 or PC2231 or PC3130 or PC3241 or PC3235 or PC2133 or EE2005", + "corequisite": "" + }, + { + "moduleCode": "PC3246", + "title": "Astrophysics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "N.A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2130 or PC2132", + "corequisite": "" + }, + { + "moduleCode": "PC3247", + "title": "Modern Optics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PC2231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC2131 or EE2005", + "corequisite": "" + }, + { + "moduleCode": "PC3251", + "title": "Nanophysics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP2251", + "corequisite": "" + }, + { + "moduleCode": "PC3267", + "title": "Biophysics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC2131 or PC2267 or EE2011 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC3270", + "title": "Machine Learning for Physicists", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "CS3244 Machine Learning; IT3011 Introduction to Machine Learning and Applications", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2134 Mathematical Methods in Physics I", + "corequisite": "" + }, + { + "moduleCode": "PC3274", + "title": "Mathematical Methods in Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2134", + "corequisite": "" + }, + { + "moduleCode": "PC3280", + "title": "Senior Student Seminar", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC3288", + "title": "Advanced UROPS in Physics I", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC3289", + "title": "Advanced UROPS in Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC3294", + "title": "Radiation Laboratory", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3232 or PC3232B", + "corequisite": "" + }, + { + "moduleCode": "PC3295", + "title": "Radiation for Imaging and Therapy in Medicine", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1144 Physics IV OR PC1432/PC1432X Physics IIE OR PC2232 Physics for Electrical Engineers OR PC2020 Electromagnetics for Electrical Engineers OR PC2130B Applied Quantum Physics.", + "corequisite": "" + }, + { + "moduleCode": "PC3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Physics as first major and have completed a minimum of 32 MCs in Physics major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "PC3311", + "title": "Undergraduate Professional Internship", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Physics as first major and have completed a minimum of 32 MCs in Physics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "PC3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Physics as first major and have completed a minimum of 32 MCs in Physics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "PC3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared PC as first major and have completed a minimum of 32 MCs in PC major at the time of application and have completed PC3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "PC4130", + "title": "Quantum Mechanics III", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3130", + "corequisite": "" + }, + { + "moduleCode": "PC4199", + "title": "Honours Project in Physics", + "moduleCredit": 12, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "For Cohort 2011 and before- At least an overall CAP of 3.50, on fulfillment of 100 MC or more; and major requirements under the B.Sc. programme. For Cohort 2012 and after- At least one major at B.Sc./B.Appl.Sc. level; and minimum overall CAP of 3.20 on completion of 100 MCs or more.", + "corequisite": "" + }, + { + "moduleCode": "PC4199R", + "title": "Integrated B.ENG./B.SC. (Hons) Dissertation", + "moduleCredit": 16, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC4228", + "title": "Device Physics for Quantum Technology", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3130 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC4230", + "title": "Quantum Mechanics III", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PC4130", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3130", + "corequisite": "" + }, + { + "moduleCode": "PC4232", + "title": "Cosmology", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3246 or PC4248 or PC3274", + "corequisite": "" + }, + { + "moduleCode": "PC4236", + "title": "Computational Condensed Matter Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3235", + "corequisite": "" + }, + { + "moduleCode": "PC4240", + "title": "Solid State Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3235 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PC4241", + "title": "Statistical Mechanics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2230 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC4242", + "title": "Electricity and Magnetism III", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3231", + "corequisite": "" + }, + { + "moduleCode": "PC4243", + "title": "Atomic & Molecular Physics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3233", + "corequisite": "" + }, + { + "moduleCode": "PC4245", + "title": "Particle Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed PC3130 and PC3232", + "corequisite": "" + }, + { + "moduleCode": "PC4246", + "title": "Quantum Optics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC3130 or PC3243", + "corequisite": "" + }, + { + "moduleCode": "PC4248", + "title": "General Relativity", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed PC3274 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC4249", + "title": "Astrophysics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC3246 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC4253", + "title": "Thin Film Technology", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "EEE or CPE or CEG or MLE5201 students are not allowed to take this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC3235 or PC3241 or PC3242", + "corequisite": "" + }, + { + "moduleCode": "PC4259", + "title": "Surface Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed one of these modules: PC3130, PC3242, EE2004, EE3431C or EE2143", + "corequisite": "" + }, + { + "moduleCode": "PC4262", + "title": "Remote Sensing", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3231 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC4264", + "title": "Advanced Solid State Devices", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3241", + "corequisite": "" + }, + { + "moduleCode": "PC4267", + "title": "Biophysics III", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC3267 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC4268", + "title": "Biophysical Instrumentation & Biomolecular Electronics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC3267 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC4274", + "title": "Mathematical Methods in Physics III", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed PC3274", + "corequisite": "" + }, + { + "moduleCode": "PC5198", + "title": "Graduate Seminar Module in Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC5201", + "title": "Advanced Quantum Mechanics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed PC3130 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC5202", + "title": "Advanced Statistical Mechanics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed PC4241 or departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "PC5203", + "title": "Advanced Solid State Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3130 and PC4240 (Solid State Physics II) or Departmental Approval.", + "corequisite": "" + }, + { + "moduleCode": "PC5204", + "title": "Magnetism and Spintronics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3235, PC4240, and PC4241 or equivalent modules approved by the lecturer or Department Approval", + "corequisite": "" + }, + { + "moduleCode": "PC5204A", + "title": "Soft Materials and Flexible Devices", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC5204B", + "title": "Selected Topics in Physics: Analytic Approximations", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3274 or PC4274 or department approval.", + "corequisite": "" + }, + { + "moduleCode": "PC5205", + "title": "Topics in Surface Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC4223 or PC4259 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC5206", + "title": "Selected Topics in Quantum Field Theory", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC4130/PC4230, PC5201, or Departmental Approval.", + "corequisite": "" + }, + { + "moduleCode": "PC5207", + "title": "Topics in Optical Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC4258 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC5208", + "title": "Superconductivity", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either PC4214 or PC4240, or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC5209", + "title": "Accelerator Based Materials Characterisation", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed either one of these modules. PC4244, PC4212, PC4261, or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC5210", + "title": "Advanced Dynamics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed both PC3274 and PC3130, or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC5212", + "title": "Physics of Nanostructures", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students who have passed one of these modules. PC4130, PC4240, PC4201 (old code), PC4214 (old code), or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC5213", + "title": "Advanced Biophysics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students with a general background in physics and have learnt thermal dynamics.", + "corequisite": "" + }, + { + "moduleCode": "PC5214", + "title": "Essential techniques in experimental physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A basic background in optics is recommended", + "corequisite": "" + }, + { + "moduleCode": "PC5215", + "title": "Numerical Recipes With Applications", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3236 or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC5216", + "title": "Advanced Atomic & Molecular Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC5220", + "title": "The Physics and Technology of 2D-Materials and Devices", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Introduction to solid state physics, QM2", + "corequisite": "" + }, + { + "moduleCode": "PC5228", + "title": "Quantum Information and Computation", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3130 or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "PC5239", + "title": "Special Problems in Physics", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PC5239B", + "title": "Variational Principles", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at the Dept of Physics\nand CQT. Students from other departments and faculties\nare welcome, but it is advisable that they discuss their\nbackground with the lecturer before registering. Enrolled\nstudents are expected to have the usual background of a\nphysics graduate student.", + "corequisite": "" + }, + { + "moduleCode": "PC5247", + "title": "Photonics II", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC3247: Modern Optics, or equivalent.", + "corequisite": "Familiar with electromagnetism (including Maxwell’s equations), and with the mathematics of differential equations, complex number, basic Fourier transform theory." + }, + { + "moduleCode": "PC5288", + "title": "M.sc Coursework Thesis For Physics", + "moduleCredit": 12, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC5289", + "title": "M.sc.(coursework) Thesis For Applied Physics", + "moduleCredit": 16, + "department": "Physics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PC5731", + "title": "Smart Devices for A-Level Physics Teachers", + "moduleCredit": 1, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a Bachelor’s degree in Physics or a related subject", + "corequisite": "" + }, + { + "moduleCode": "PE2101P", + "title": "Introduction to Philosophy, Politics, and Economics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PE3101P", + "title": "Decision and Social Choice", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PH3249", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM2006/GET1028 Logic", + "corequisite": "" + }, + { + "moduleCode": "PE3551E", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared the PPE major, with the Economics specialization, completed a minimum of 24 MC of PPE graduation requirements, and have a CAP of at least 3.50.", + "corequisite": "" + }, + { + "moduleCode": "PE3551P", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared the PPE major, with the Philosophy specialization, completed a minimum of 24 MC of PPE graduation requirements, and have a CAP of at least\n3.50.", + "corequisite": "" + }, + { + "moduleCode": "PE3551S", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared the PPE major, with the Political Science specialization, completed a minimum of 24 MC of PPE graduation requirements, and have a CAP of at least\n3.50.", + "corequisite": "" + }, + { + "moduleCode": "PE4101P", + "title": "The Ethics and Politics of Nudging", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, PS, EC, PE or PE-recognised modules. Achieve a minimum CAP of 3.20 or be on the Honours track. PE2101P and EC2101.", + "corequisite": "" + }, + { + "moduleCode": "PE4102P", + "title": "Welfare and Distribution", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, PS, EC, PE or PE-recognised modules. Achieve a minimum CAP of 3.20 or be on the Honours track. PE2101P.", + "corequisite": "" + }, + { + "moduleCode": "PE4401E", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH4401 Honours Thesis,\nPS4401 Honours Thesis,\nEC4401 Honours Thesis,\nPE4401P Honours Thesis,\nPE4401S Honours Thesis,\nPH4660 Independent Study,\nPS4660 Independent Study,\nEC4660 Independent Study,\nPE4660P Independent Study,\nPE4660S Independent Study,\nPE4660E Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered PPE Majors with the Economics Specialization who completed 110 MCs including 44 MCs in PH, PS, EC, PE or PE-recognized modules, with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "PE4401P", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH4401 Honours Thesis,\nPS4401 Honours Thesis,\nEC4401 Honours Thesis,\nPE4401S Honours Thesis,\nPE4401E Honours Thesis,\nPH4660 Independent Study,\nPS4660 Independent Study,\nEC4660 Independent Study,\nPE4660P Independent Study,\nPE4660S Independent Study,\nPE4660E Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered PPE Majors with the Philosophy Specialization who completed 110 MCs including 44 MCs in PH, PS, EC, PE or PE-recognized modules, with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "PE4401S", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH4401 Honours Thesis,\nPS4401 Honours Thesis,\nEC4401 Honours Thesis,\nPE4401P Honours Thesis,\nPE4401E Honours Thesis,\nPH4660 Independent Study,\nPS4660 Independent Study,\nEC4660 Independent Study,\nPE4660P Independent Study,\nPE4660S Independent Study,\nPE4660E Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered PPE Majors with the Political Science Specialization who completed 110 MCs including 44 MCs in PH, PS, EC, PE or PE-recognized modules, with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "PE4660E", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH4401 Honours Thesis,\nPS4401 Honours Thesis,\nEC4401 Honours Thesis,\nPE4401P Honours Thesis,\nPE4401S Honours Thesis,\nPE4401E Honours Thesis,\nPH4660 Independent Study,\nPS4660 Independent Study,\nEC4660 Independent Study,\nPE4660P Independent Study,\nPE4660S Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered subject to the agreement of the Supervisor to PPE Majors with the Economics specialization who completed 100 MCs including 44 MCs in PH, PS, EC, PE or PE-recognized modules, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PE4660P", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH4401 Honours Thesis,\nPS4401 Honours Thesis,\nEC4401 Honours Thesis,\nPE4401P Honours Thesis,\nPE4401S Honours Thesis,\nPE4401E Honours Thesis,\nPH4660 Independent Study,\nPS4660 Independent Study,\nEC4660 Independent Study,\nPE4660S Independent Study,\nPE4660E Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered subject to the agreement of the Supervisor to PPE Majors with the Philosophy specialization who completed 100 MCs including 44 MCs in PH, PS, EC, PE or PE-recognized modules, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PE4660S", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH4401 Honours Thesis,\nPS4401 Honours Thesis,\nEC4401 Honours Thesis,\nPE4401P Honours Thesis,\nPE4401S Honours Thesis,\nPE4401E Honours Thesis,\nPH4660 Independent Study,\nPS4660 Independent Study,\nEC4660 Independent Study,\nPE4660P Independent Study,\nPE4660E Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be offered subject to the agreement of the Supervisor to PPE Majors with the Political Science specialization who completed 100 MCs including 44 MCs in PH, PS, EC, PE or PE-recognized modules, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PF1101", + "title": "Fundamentals of Project Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF1103", + "title": "Digital Construction", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF1106", + "title": "Introduction to Measurement", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF1102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF1107", + "title": "Project And Facilities Management Law", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF1108", + "title": "Introduction to Building Performance", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF1104", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2102", + "title": "Structural Systems", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "Students from Civil Engineering, PF2501", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2103", + "title": "Measurement (Building Works)", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2107", + "title": "Construction Technology", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2108", + "title": "Project Cost Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2109", + "title": "Project Feasibility", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2110", + "title": "Fundamentals of Facilities Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF1105", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2203", + "title": "Quality and Productivity Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2205", + "title": "Project Finance", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2204", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2304", + "title": "Operations and Maintenance Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF4309, PFM students from AY2018/19 intake and after", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2305", + "title": "Event Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF4307, PFM students from AY2017/18 intake and before", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2306", + "title": "Event Management Case Studies", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF4308, PFM students from AY2017/18 intake and before", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2402", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 3, + 4 + ], + "preclusion": "Full-time undergraduate students who have accumulated more than 12MCs for previous internship stints.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This internship module is open to full-time undergraduate students who have completed at least 60MCs as at 1 January of that year and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation period.", + "corequisite": "" + }, + { + "moduleCode": "PF2502", + "title": "Development Technology and Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2504", + "title": "Materials Technology", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF2505", + "title": "M&E Systems", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF2104,PF2503", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3104", + "title": "Project Execution", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF3101,PF3206,PF4207", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3105", + "title": "Research Methods", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2105", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3201", + "title": "Measurement (Specialist Works)", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PF2503 M&E Engineering Systems/ PF2505 M&E Systems (AY2014/15 to AY2017/18 intakes)", + "corequisite": "" + }, + { + "moduleCode": "PF3205", + "title": "Advanced Measurement", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PF2102/ PF2501 Structural Systems (AY2014/15 to AY2017/18 intakes)", + "corequisite": "" + }, + { + "moduleCode": "PF3207", + "title": "Project Management Law", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3208", + "title": "Project Leadership", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2106", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3209", + "title": "Building Information Modelling", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3210", + "title": "Total Building Performance", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF4501", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3211", + "title": "AI Applications for the Built Environment", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3301", + "title": "Maintainability of Facilities", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3305", + "title": "Facilities Planning and Design", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3306", + "title": "Facilities Management Law And Contracts", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF3304", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3307", + "title": "Strategic Facilities Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF4301, PFM students from AY2017/18 intake and before", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3401", + "title": "Practical Training Scheme", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3502", + "title": "Smart Facilities", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF3501", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF3504", + "title": "Energy Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF3302, PFM students from AY2017/18 intake and before", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4101", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4102", + "title": "Contract and Procurement Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4203", + "title": "Project Dispute Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4206", + "title": "Building Information Modelling", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4207", + "title": "Project Risk Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "PF3104, PFM students from AY2018/19 intake and after", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4208", + "title": "Safety and Health Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF4202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4209", + "title": "Construction Enterprise Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4211", + "title": "Addictive Manufacturing for Construction", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4212", + "title": "Advanced Building Information Modelling", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PF3209 Building Information Modelling", + "corequisite": "" + }, + { + "moduleCode": "PF4213", + "title": "Building Energy Analysis and Simulation", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4301", + "title": "Strategic Facilities Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF3307, PFM students from AY2018/19 intake and after", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4305", + "title": "Green Development", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF4502, PFM students from AY2018/19 intake and after", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4306", + "title": "REITs Facilities Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4307", + "title": "Event Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2305, PFM students from AY2018/19 intake and after", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4308", + "title": "Event Management Case Studies", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF2306, PFM students from AY2018/19 intake and after", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4309", + "title": "Infrastructure Operations and Maintenance", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "PF2304, PFM students from AY2017/18 intake and before", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4501", + "title": "Total Building Performance", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PF4502", + "title": "Green Development", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "PF4305, PFM students from AY2017/18 intake and before", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2112", + "title": "Non-Classical Logic", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GET1028 Logic", + "corequisite": "" + }, + { + "moduleCode": "PH2113", + "title": "Computation and Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2201", + "title": "Introduction to Philosophy Of Science", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM2025", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2202", + "title": "Major Political Philosophers", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2203", + "title": "Major Moral Philosophers", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2204", + "title": "Introduction to Indian Thought", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK2027, SN2273", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2206", + "title": "Founders of Modern Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK2028", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2207", + "title": "Hume and Kant", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2208", + "title": "Applied Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2029", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2209", + "title": "Philosophy of Art", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2211", + "title": "Philosophy of Religion", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2212", + "title": "Introduction to Continental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU2214, GEK2030", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2213", + "title": "Metaphysics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2216", + "title": "Environmental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "UPI2205, GEK2031", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2218", + "title": "Business Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2033", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2219", + "title": "Critical Theory and Hermeneutics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU2222", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2220", + "title": "Social Philosophy and Policy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2034", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2221", + "title": "Medical Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2208, GEK2035", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2222", + "title": "Greek Philosophy (Socrates and Plato)", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH3209, GEK2036", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2223", + "title": "Introduction to the Philosophy of Technology", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2037", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2224", + "title": "Philosophy and Film", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PH2880A, GEK2040", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2226", + "title": "Concept of Nature in Inquiry", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2241", + "title": "Philosophy of Mind", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PH3212 Philosophy of Mind", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2242", + "title": "Philosophy of Language", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PH3210", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2243", + "title": "Epistemology", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PH3211 Theory of Knowledge", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2301", + "title": "Classical Chinese Philosophy I", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2205, GEK2038", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2302", + "title": "Chinese Philosophical Traditions I", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2039", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH2880", + "title": "Topics in Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3201", + "title": "Philosophy of Social Science", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3202", + "title": "Philosophy of Law", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "LL4639E, LL4404 or an equivalent course", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3203", + "title": "Moral Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3204", + "title": "Issues in Indian Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SN3272", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3206", + "title": "Recent Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3207", + "title": "Continental European Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU3227", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3208", + "title": "Buddhist Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3213", + "title": "Knowledge, Modernity and Global Change", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3214", + "title": "Philosophy and Literature", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3216", + "title": "Comparative Environmental Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3217", + "title": "Women in Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One PH module", + "corequisite": "" + }, + { + "moduleCode": "PH3218", + "title": "Introduction to Comparative Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed at least one Western philosophy module and at least one relevant Asian philosophy module (depending on whether Chinese or Indian Philosophy is the focus of a particular session), and the department’s permission.", + "corequisite": "" + }, + { + "moduleCode": "PH3222", + "title": "Greek Philosophy (Aristotle)", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2222", + "corequisite": "" + }, + { + "moduleCode": "PH3230", + "title": "Normative Ethical Theory", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH3241", + "title": "Consciousness", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH3212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2241 or PH2242 or PH3210", + "corequisite": "" + }, + { + "moduleCode": "PH3242", + "title": "The Self", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2213 or PH2241", + "corequisite": "" + }, + { + "moduleCode": "PH3243", + "title": "Chance and Uncertainty", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2110/GEM2006 or PH2201/GEM2025 or PH2243 or PH3211", + "corequisite": "" + }, + { + "moduleCode": "PH3244", + "title": "Appearance and Reality", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2213 or PH2241 or PH2242", + "corequisite": "" + }, + { + "moduleCode": "PH3245", + "title": "Language and Thought", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2241 or PH3212 or PH2242 or PH3210", + "corequisite": "" + }, + { + "moduleCode": "PH3246", + "title": "Paradoxes", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2110/GEM2006", + "corequisite": "" + }, + { + "moduleCode": "PH3247", + "title": "Philosophical Logic", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM2006/PH2110 or GET1028", + "corequisite": "" + }, + { + "moduleCode": "PH3248", + "title": "Social and Formal Epistemology", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2111/GEK2048 or PH2243", + "corequisite": "" + }, + { + "moduleCode": "PH3250", + "title": "Quantification and Modality", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2112 Non-Classical Logic", + "corequisite": "" + }, + { + "moduleCode": "PH3261", + "title": "Kant's Critique of Pure Reason", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must have completed a minimum of 4 MC in PH.", + "corequisite": "" + }, + { + "moduleCode": "PH3301", + "title": "Classical Chinese Philosophy II", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2301 or GEK2038", + "corequisite": "" + }, + { + "moduleCode": "PH3302", + "title": "Chinese Philosophical Traditions 2", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PH2302", + "corequisite": "" + }, + { + "moduleCode": "PH4201", + "title": "Philosophy of Science", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4202", + "title": "Political Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4203", + "title": "Issues in Moral Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH or 28 MCs in NM, or 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4204", + "title": "Topics in Indian Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in PH or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in PH modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4205", + "title": "Topics in East Asian Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in PH, or 28MCs in PS, or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. PH2301 or PH2302.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in PH or 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track. PH2301 or PH2302.", + "corequisite": "" + }, + { + "moduleCode": "PH4206", + "title": "A Major Philosopher", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German)/recog nised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German/Spanis h)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4207", + "title": "Phenomenology", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German/Spanis h)/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4208", + "title": "Topics in Buddhism", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in PH or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in PH modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4209", + "title": "Greek Thinkers", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014 Completed 80MCs, including 28 MCs in PH or 28 MCs in EU/LA(French/German)/ recognised modules or 28MCs in GL/GL recognised non- language modules, with a minimum CAP of 3.20 or be on the Honours track. \n\nCohort 2015-2019: Completed 80MCs, including 28 MCs in PH or 28 MCs in EU/LA(French/German/ Spanish)/recognised modules or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in PH or 28 MCs in EU/LA(French/German/ Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4210", + "title": "Topics in Western Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH, or 28MCs in PS, or 28 MCs in EU/LA (French/German)/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards: \nCompleted 80MCs, including 28 MCs in PH, or 28MCs in PS, or 28 MCs in EU/LA (French/German/ Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4211", + "title": "Issues in Epistemology", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4212", + "title": "Issues in Philosophy of Mind", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4213", + "title": "Comparative Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German/Spanis h)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4214", + "title": "Recent Continental European Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28 MCs in PH or 28 MCs in GL/GL recognized non- language modules, with a minimum CAP of 3.2 or be on the Honours track\n\nCohort 2020 onwards: Completed 80MCs, including 28 MCs in PH modules, with a minimum CAP of 3.2 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "PH4215", + "title": "Freedom and Moral Responsibility", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4216", + "title": "Topics in Environmental Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4217", + "title": "History of Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4240", + "title": "Issues in Metaphysics", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4241", + "title": "Issues in Philosophical Logic", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track. PH2110/GEM2006", + "corequisite": "" + }, + { + "moduleCode": "PH4242", + "title": "Issues in Philosophy of Language", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in PH or 28 MCs in EL, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4243", + "title": "Issues in Aesthetics", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28 MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4261", + "title": "Kant", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German)/recog nised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\n Completed 80MCs, including 28 MCs in PH or 28 MCs in EU/LA (French/German/Spanis h)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4262", + "title": "Nietzsche", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014: \nCompleted 80MCs, including 28 MCs in PH, or 28MCs in PS, or 28 MCs in EU/LA (French/ German)/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards: \nCompleted 80MCs, including 28 MCs in PH, or 28MCs in PS, or 28 MCs in EU/LA (French/German/Span ish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours", + "corequisite": "" + }, + { + "moduleCode": "PH4311", + "title": "Classical Chinese Through Philosophical Texts", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "CL3204. This is taught in Mandarin, those who could do this module should not be taking the proposed module. Reverse preclusion is not needed, as someone who\npassed the proposed module, if their Mandarin improved sufficiently, could still benefit from CL3204 and will not find that too easy.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MC, including 28 MCs in PH or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. \nPH2301 or PH2302.\n\nCohort 2020 onwards: Completed 80MC, including 28 MCs in PH modules, with a minimum CAP of 3.20 or be on the Honours track. \nPH2301 or PH2302.", + "corequisite": "" + }, + { + "moduleCode": "PH4312", + "title": "Contemporary Readings in East Asian Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MC, including 28 MCs in PH or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. \nPH2301 or PH2302 or PH2321 or PH3208 or PH3218 or PH3301 or PH3302 or PH3303 or PH3304 or CH2252 or CH3253.\n\nCohort 2020 onwards: Completed 80MC, including 28 MCs in PH modules, with a minimum CAP of 3.20 or be on the Honours track. \nPH2301 or PH2302 or PH2321 or PH3208 or PH3218 or PH3301 or PH3302 or PH3303 or PH3304 or CH2252 or CH3253.", + "corequisite": "" + }, + { + "moduleCode": "PH4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PH4660", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs including 60 MCs of PH major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of PH major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "PH4550", + "title": "Internship: Philosophy for Teaching", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in PH, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PH4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PH, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PH5420", + "title": "Advanced Political Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5420R", + "title": "Advanced Political Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5423", + "title": "Philosophy of Science and Technology", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5423R", + "title": "Philosophy of Science & Technology", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5430", + "title": "Ethics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5430R", + "title": "Ethics", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2006 and before: Completed 80MCs, of which at least 28MCs are PH shared major Cohort 2007 onwards: Completed 80MCs, including 28MCs in PH, with a minimum CAP of 3.5 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PH5510", + "title": "Comparative Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5650", + "title": "Topics In Continental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Offered to Graduate students only and admission of others by permission of instructor", + "corequisite": "" + }, + { + "moduleCode": "PH5650R", + "title": "Topics in Continental Philosophy", + "moduleCredit": 5, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6210", + "title": "Topics in History of Western Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6211", + "title": "Advanced Epistemology", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6212", + "title": "Advanced Philosophy of Mind", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6216", + "title": "Advanced Environmental Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil (Those who are not graduate students in NUS’s Dept.\nof Phil. must obtain instructor’s approval.)", + "corequisite": "" + }, + { + "moduleCode": "PH6240", + "title": "Advanced Metaphysics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6241", + "title": "Advanced Philosophical Logic", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6242", + "title": "Advanced Philosophy of Language", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6243", + "title": "Advanced Aesthetics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6320", + "title": "Traditions in Asian Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6540", + "title": "Topics in Analytic Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Offered to Graduate students only and admission of others by permission of instructor", + "corequisite": "" + }, + { + "moduleCode": "PH6760", + "title": "Philosophical Topics", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PH6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PHS1110", + "title": "Foundation for Medicinal and Synthetic Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PR1110A Foundations for Medicinal Chemistry and PR1110 Foundations for Medicinal Chemistry and Pharmacy Major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PHS1111", + "title": "Fundamental Biochemistry for Pharmaceutical Science", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PR1111A Pharmaceutical Biochemistry and PR1111 Pharmaceutical Biochemistry and Pharmacy Major and LSM1106 Molecular Cell Biology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PHS1114", + "title": "Principles of Pharmaceutical Formulations I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "PR2114A Formulation & Technology I and PR2114 Formulation & Technology I and Pharmacy Major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalen", + "corequisite": "" + }, + { + "moduleCode": "PHS1120", + "title": "Essential Topics in Pharmaceutical Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Pharmacy Major", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PHS1110 Foundation for Medicinal and Synthetic Chemistry", + "corequisite": "" + }, + { + "moduleCode": "PHS1130", + "title": "Human Physiology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "AY1130 Human Anatomy & Physiology I and PY1131 Human Anatomy & Physiology II and Pharmacy Major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pharmaceutical Science Major or by departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PHS2120", + "title": "Drug Product Development and Lifecycle Management", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110A", + "corequisite": "" + }, + { + "moduleCode": "PHS2143", + "title": "Analytical Techniques and Pharmaceutical Applications", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PR2143 Pharmaceutical Analysis for Quality Assurance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110A Foundations for Medicinal Chemistry or PR1110 Foundations for Medicinal Chemistry", + "corequisite": "" + }, + { + "moduleCode": "PHS2191", + "title": "Laboratory Techniques in Pharmaceutical Science I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PHS1120, PHS2143", + "corequisite": "" + }, + { + "moduleCode": "PHS3122", + "title": "Pharmaceutical Quality Management", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PHS2120", + "corequisite": "" + }, + { + "moduleCode": "PHS3191", + "title": "Laboratory Techniques in Pharmaceutical Science II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PHS2191 Laboratory Techniques in Pharmaceutical Science I", + "corequisite": "" + }, + { + "moduleCode": "PHS3220", + "title": "Microbiology for Pharmaceutical Science", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "PR1120 Microbiology in Pharmacy", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2114/PR2114A Formulation and Technology I or PHS1114 Principles of Pharmaceutical Formulations I or PR1152 Pharmacy Foundations: Science and Therapeutics I or by departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PHS3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "Any other XX3310 or modules offered in Science, where XX stands for the subject prefix for the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared PHS as first major and have completed a minimum of 32 MCs in PHS major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "PHS3311", + "title": "Undergraduate Professional Internship", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "Any other XX3311 or modules offered in Science, where XX stands for the subject prefix for the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared PHS as first major and have completed a minimum of 32 MCs in PHS major at the time of application and have completed PHS3310.", + "corequisite": "" + }, + { + "moduleCode": "PHS3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any other XX3312 or modules offered in Science, where XX stands for the subject prefix for the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared PHS as first major and have completed a minimum of 32 MCs in PHS major at the time of application and have completed PHS3310", + "corequisite": "" + }, + { + "moduleCode": "PHS3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared PHS as first major and have completed a minimum of 32 MCs in PHS major at the time of application and have completed PHS3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "PHS4220", + "title": "Synthetic Strategies for Drug Substances", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110/PR1110A Foundations for Medicinal Chemistry or PHS1110 Foundation for Medicinal and Synthetic Chemistry.", + "corequisite": "" + }, + { + "moduleCode": "PL1101E", + "title": "Introduction to Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL2131", + "title": "Research and Statistical Methods I", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "UQF2101B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2017 and before: Obtained a minimum grade of 'C6' in G.C.E. 'O' level Mathematics, or passed at least IB Mathematical Studies SL, or equivalent.\n\nCohort 2018 onwards: Nil", + "corequisite": "" + }, + { + "moduleCode": "PL2132", + "title": "Research and Statistical Methods II", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2017 and before: At least a B- in both PL1101E and PL2131, OR has declared Psychology as a major. Students who fail to meet the B- criterion in either of the modules, or both, will have the opportunity to take a department-conducted test, the passing of which will act as an alternative prerequisite.\n\nCohort 2018 onwards: At least a B- in both PL1101E and PL2131, OR has declared Psychology as a major.", + "corequisite": "" + }, + { + "moduleCode": "PL3231", + "title": "Independent Research Project", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and consent of Supervisor. Students must have at least a 'C' grade in one of the prerequisites.", + "corequisite": "" + }, + { + "moduleCode": "PL3232", + "title": "Biological Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL3233", + "title": "Cognitive Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL3234", + "title": "Developmental Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL3235", + "title": "Social Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL3236", + "title": "Abnormal Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SW3217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL3237", + "title": "Language & Cognitive Processes", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3238", + "title": "Social Cognition", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3239", + "title": "Industrial and Organisational Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131 and PL2132", + "corequisite": "" + }, + { + "moduleCode": "PL3240", + "title": "Group Dynamics", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3241", + "title": "Personality & Individual Differences", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL2131", + "corequisite": "" + }, + { + "moduleCode": "PL3242", + "title": "Health Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL3243", + "title": "Sensation and Perception", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3244", + "title": "Adolescent Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3234", + "corequisite": "" + }, + { + "moduleCode": "PL3248", + "title": "Learning and Conditioning", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132, and PL3232 or PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3249", + "title": "Memory", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL3232 and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3250", + "title": "Human Performance", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3251", + "title": "Atypical Development and Language", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL3880A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3234", + "corequisite": "" + }, + { + "moduleCode": "PL3252", + "title": "Social-Cognitive Perspectives on Emotion", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL3880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3253", + "title": "Psychobiological Perspectives on Emotion", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3232", + "corequisite": "" + }, + { + "moduleCode": "PL3254", + "title": "Introduction to Trauma Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3236", + "corequisite": "" + }, + { + "moduleCode": "PL3255", + "title": "Introduction to Paediatric Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3234.", + "corequisite": "" + }, + { + "moduleCode": "PL3256", + "title": "Infant Development", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132, and PL3234", + "corequisite": "" + }, + { + "moduleCode": "PL3257", + "title": "Introduction to Clinical Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E and PL3236", + "corequisite": "" + }, + { + "moduleCode": "PL3258", + "title": "Decision Neuroscience", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3232", + "corequisite": "" + }, + { + "moduleCode": "PL3259", + "title": "Psychology of Ageing", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL3234 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3260", + "title": "Moral Development", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "YSS4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131 and PL2132.", + "corequisite": "" + }, + { + "moduleCode": "PL3261", + "title": "Statistical Techniques in Psychological Research", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2131, PL2132, and (PL3231 or one of the PL328x modules)", + "corequisite": "" + }, + { + "moduleCode": "PL3281", + "title": "Lab in Cognitive Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3281A", + "title": "Lab in Perception and Attention", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3281B", + "title": "Lab in Memory and Cognition", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3233.", + "corequisite": "" + }, + { + "moduleCode": "PL3281C", + "title": "Lab in Reading Processes", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3281D", + "title": "Lab in Music Perception and Cognition", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students would need to have completed PL1101E, PL2131, PL2132, and PL3233. In addition, students would normally have attained a musical backdrop or competence level in music literacy that is comparable to Grade 5 Performance/Music Theory from the Associated Board of the Royal Schools of Music, Trinity Guildhall School of Music & Drama, London College of Music & Media, Australian Music Examination Board, Dublin Institute of Technology, University of Africa, Royal Conservatory of Music (Toronto), Royal Irish Academy of Music, or an approved international music examinations board.", + "corequisite": "" + }, + { + "moduleCode": "PL3281E", + "title": "Lab in Speech and Language Processes", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3233", + "corequisite": "" + }, + { + "moduleCode": "PL3282", + "title": "Lab in Social Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3282A", + "title": "Lab in Interpersonal Relationships", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3282C", + "title": "Lab in Attitudes", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3282D", + "title": "Lab in Mindsets and Motivation", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3283", + "title": "Lab in Developmental Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3234", + "corequisite": "" + }, + { + "moduleCode": "PL3283A", + "title": "Lab in Adolescent Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3234", + "corequisite": "" + }, + { + "moduleCode": "PL3283B", + "title": "Lab in Development of Communication", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3234", + "corequisite": "" + }, + { + "moduleCode": "PL3284", + "title": "Lab in Applied Psychology (Scale Construction)", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131 and PL2132", + "corequisite": "" + }, + { + "moduleCode": "PL3285", + "title": "Lab in Biological Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3232", + "corequisite": "" + }, + { + "moduleCode": "PL3286", + "title": "Lab in Health Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3242", + "corequisite": "" + }, + { + "moduleCode": "PL3287", + "title": "Lab in Clinical/Abnormal Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3236", + "corequisite": "" + }, + { + "moduleCode": "PL3287A", + "title": "Lab in Personality and Psychopathology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3236", + "corequisite": "" + }, + { + "moduleCode": "PL3289", + "title": "Lab in Decision Science", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E, PL2131, PL2132 and PL3235", + "corequisite": "" + }, + { + "moduleCode": "PL3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PL3880", + "title": "Topics in Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL3880C", + "title": "Alcohol, Drugs and Behaviour", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL1101E", + "corequisite": "" + }, + { + "moduleCode": "PL4201", + "title": "Psychometrics and Psychological Testing", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PL5223", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4202", + "title": "History and Systems of Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4203", + "title": "Cognition", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4205", + "title": "Developmental Processes", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3234, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4206", + "title": "Cognitive Neuroscience", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3232, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4207", + "title": "Social Psychology: Theories and Methods", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), in which one must\nbe PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4208", + "title": "Introduction to Counselling Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4213", + "title": "Cognitive Neuropsychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4214", + "title": "Evolutionary Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "UAS3006", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4216", + "title": "Personnel Selection", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4218", + "title": "Psychological Assessment", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4219", + "title": "Advanced Abnormal Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL4880A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4221", + "title": "Early Language Development", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3234, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4222", + "title": "Neuroscience of Memory", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3232 and PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4223", + "title": "Introduction to Clinical Neuropsychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4224", + "title": "Child Abnormal Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4225", + "title": "Psychology of Gender", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4226", + "title": "Correctional Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4227", + "title": "Behavioral Genetics for Social Scientists", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4228", + "title": "Criminal Forensic Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3235 and PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4229", + "title": "Psychological Therapies", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4230", + "title": "Mindful Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a minimum of 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4231", + "title": "Personality Biology, Economics and Wellbeing", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132, PL3241 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3235 and PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4232", + "title": "Psychology of Organizational Processes", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132, PL3239 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4233", + "title": "Psychology of Negotiation", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SW3208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4234", + "title": "Patient and Health Care", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132, PL3242 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4235", + "title": "The Psychology of Moral Judgments", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "YSS4206A Topics in Psychology: Moral Judgements", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3234 and PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4236", + "title": "Autism Spectrum and Related Conditions", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3234 and PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4237", + "title": "Evidence-Based Treatments for Trauma", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132, PL3254 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4238", + "title": "Social Neuroscience", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), which should include PL3232 and PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4239", + "title": "Social Psychology of the Unconscious", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PL4880I", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4240", + "title": "Emotion and Psychopathology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL4880N", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4241", + "title": "Exploring Consciousness – Theory and Neuroscience", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3232 and PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4242", + "title": "Historical Controversies in Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PL4880U Historical Controversies in Psychology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), which should include PL3234 and PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4243", + "title": "Intellectual Developmental Disorder", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed a minimum of 80 MCs of which student must have passed PL1101E, PL2131, PL2132, and 4 out of the 5 core modules (PL3232-PL3236), in which one must be PL3233 or PL3234, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4244", + "title": "Sleep: A Cognitive Neuroscience Perspective", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), which should include PL3232 and PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4245", + "title": "Data Science for Psychology: Methods and Applications", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "DSA1101 Introduction to Data Science \nBT1101 Introduction to Business Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before: Completed 110 MCs, including 60 MCs of PL major requirements, with a minimum CAP of 3.50. \n\nCohorts 2016 and 2017: Completed 110 MCs, including 44 MCs of PL major requirements, with a minimum CAP of 3.50. \n\nCohort 2018 onwards: Completed 110 MCs, including 44 MCs of PL major requirements, with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "PL4501", + "title": "Integrated Thesis", + "moduleCredit": 15, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL4401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs, including 60 MCs of PL major requirements, with a minimum CAP of 3.50. Students should be enrolled in the Concurrent Degree Programme and be in good standing. Registration is subject to departmental consent.\n\nCohort 2016 onwards:\nCompleted 110 MCs, including 44 MCs of PL major requirements, with a minimum CAP of 3.50. Students should be enrolled in the Concurrent Degree Programme and be in good standing. Registration is subject to departmental consent.", + "corequisite": "" + }, + { + "moduleCode": "PL4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL4401 or XFA4405", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in PL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in PL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PL4880", + "title": "Topics in Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880C", + "title": "Issues in Testing and Research", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880F", + "title": "Addictive Behaviours", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3236, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880G", + "title": "Positive Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880H", + "title": "Sport Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880J", + "title": "The Right and Left Brain", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3232, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880K", + "title": "Parenting and Child Development", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3234, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880L", + "title": "Applying Cognitive Psychology to Learning & Instruction", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 – PL3236), in which one must be PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880M", + "title": "Social Psychology and Technology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules PL3232 - PL3236), in which one must be PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880P", + "title": "Psychology of Religion", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880Q", + "title": "Psychology of Bilingualism", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3233, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880R", + "title": "Issues in Adolescent Developmt", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), in which one must be PL3234, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880S", + "title": "Programme Evaluation in the Social Service Sector", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 - PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880T", + "title": "Applying Psychology In Education", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL4880U", + "title": "Historical Controversies in Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs of which student must have passed PL1101E, PL2131, PL2132 and 4 out of the 5 core modules (PL3232 ‐ PL3236), which should include\nPL3234 and PL3235, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PL5221", + "title": "Analysis of Psychological Data Using Glm", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PL5102/PL6102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2101Y/PL2131 and PL2132 or consent of Instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5221R", + "title": "Analysis of Psychological Data using GLM", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PL5102/PL6102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2101Y/PL2131 and PL2132 or consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5222", + "title": "Multivariate Statistics in Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PL4204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2101Y/PL2131 and PL2102Y/PL2132 or consent of Instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5222R", + "title": "Multivariate Statistics in Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PL4204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2101Y/PL2131 and PL2102Y/PL2132 or consent of Instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5225", + "title": "Structural Equation Modeling", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2101Y/PL2131, PL2102Y/PL2132 and PL5221, or consent of the instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5225R", + "title": "Structural Equation Modeling", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL2101Y/PL2131, PL2102Y/PL2132 and PL5221, or consent of the instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5303", + "title": "Advanced Cognitive Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PL6222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL3233 or consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5303R", + "title": "Advanced Cognitive Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PL6222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL3233 or consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5304", + "title": "Advanced Developmental Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL5304R", + "title": "Advanced Developmental Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL5305", + "title": "Advanced Social Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6223", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL3235 or consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5305R", + "title": "Advanced Social Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6223", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PL3235 or consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "PL5306", + "title": "Advanced Clinical Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6210", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL5306R", + "title": "Advanced Clinical Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6210", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL5307", + "title": "Advanced Health Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL5307R", + "title": "Advanced Health Psychology", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL5308", + "title": "Advanced Social and Cognitive Neuroscience", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology graduate program or approval by the lecturer", + "corequisite": "" + }, + { + "moduleCode": "PL5308R", + "title": "Advanced Social and Cognitive Neuroscience", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PL6204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology graduate program or approval by the lecturer", + "corequisite": "" + }, + { + "moduleCode": "PL5309", + "title": "Motivation and Behaviour Change", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For graduate students:\nConsent of instructor\n\nFor Honours year students:\nEnforced pre‐requisites: PL2131, PL2132, PL3235, and consent of instructor.", + "corequisite": "" + }, + { + "moduleCode": "PL5309R", + "title": "Motivation and Behaviour Change", + "moduleCredit": 5, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For graduate students:\nConsent of instructor\n\nFor Honours year students:\nEnforced pre‐requisites: PL2131, PL2132, PL3235, and consent of instructor.", + "corequisite": "" + }, + { + "moduleCode": "PL5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL5220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL6208", + "title": "Empirical Research Project", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology PhD program", + "corequisite": "" + }, + { + "moduleCode": "PL6215", + "title": "Selected Applications in Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Consent of instructor", + "corequisite": "" + }, + { + "moduleCode": "PL6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL6220, PL6220A, PL6220B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PL6883", + "title": "Selected Topics in Cognitive Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology graduate program or approval by the lecturer", + "corequisite": "" + }, + { + "moduleCode": "PL6885", + "title": "Selected Topics in Social, Personality, I-O Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology graduate program or approval by the lecturer.", + "corequisite": "" + }, + { + "moduleCode": "PL6888", + "title": "Selected Topics in Social and Cognitive Neuroscience", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology graduate program or approval by the lecturer.", + "corequisite": "" + }, + { + "moduleCode": "PL6889", + "title": "Selected Topics in Emotion Psychology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the NUS psychology graduate program or approval by the lecturer.", + "corequisite": "" + }, + { + "moduleCode": "PLB1201", + "title": "Psychology in Everyday Life", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK1064 and PL1101E. Students who take PLB1201 and subsequently go on to major in Psychology will not be able to count PLB1201 towards their graduation requirements.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PLC5001", + "title": "Psychological Assessment", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to Clinical Psychology training programme", + "corequisite": "" + }, + { + "moduleCode": "PLC5002", + "title": "Adult Psychopathology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to Clinical Psychology training programme", + "corequisite": "" + }, + { + "moduleCode": "PLC5003", + "title": "Health across the lifespan", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to Clinical Psychology programme or with permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "PLC5004", + "title": "Psychological Intervention and Therapy", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PLC5005", + "title": "Child Psychopathology", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5002 Introduction to Psychological Disorders", + "corequisite": "" + }, + { + "moduleCode": "PLC5006", + "title": "Ethics and Professional Issues", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5011 (Clinical Placement 1)", + "corequisite": "" + }, + { + "moduleCode": "PLC5007", + "title": "Advanced Psychological Practice", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5011 (Clinical Placement 1) and PLC5004 (Psychological Intervention and Therapy)", + "corequisite": "" + }, + { + "moduleCode": "PLC5008", + "title": "Graduate Research Methods", + "moduleCredit": 2, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to Clinical Psychology training programme", + "corequisite": "" + }, + { + "moduleCode": "PLC5009", + "title": "Research Proposal", + "moduleCredit": 8, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to Clinical Psychology training programme", + "corequisite": "" + }, + { + "moduleCode": "PLC5010", + "title": "Research Project", + "moduleCredit": 12, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Research Proposal", + "corequisite": "" + }, + { + "moduleCode": "PLC5011", + "title": "Clinical Placement 1", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5004 (Psychological Intervention and Therapy), PLC5001 (Psychological Assessment and Diagnosis)", + "corequisite": "" + }, + { + "moduleCode": "PLC5011A", + "title": "Clinical Placement 1", + "moduleCredit": 6, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5004 (Psychological Intervention and Therapy), PLC5001 (Psychological Assessment and Diagnosis)", + "corequisite": "" + }, + { + "moduleCode": "PLC5012", + "title": "Clinical Placement 2", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5011 (Clinical Placement 1), PLC5002 (Psychopathology & Pharmacotherapy), PLC5003 (Clinical Health Psychology), PLC5005 (Advanced Psychopathology)", + "corequisite": "" + }, + { + "moduleCode": "PLC5012B", + "title": "Clinical Placement 2", + "moduleCredit": 6, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PLC5013", + "title": "Clinical Placement 3", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5012 (Clinical Placement 2); Pass on the Professional Competency Examination", + "corequisite": "" + }, + { + "moduleCode": "PLC5013C", + "title": "Clinical Placement 3", + "moduleCredit": 6, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5012 (Clinical Placement 2); Pass on the Professional Competency Examination", + "corequisite": "" + }, + { + "moduleCode": "PLC5014", + "title": "Clinical Placement 4", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5013 (Clinical Placement 3)", + "corequisite": "" + }, + { + "moduleCode": "PLC5014D", + "title": "Clinical Placement 4", + "moduleCredit": 6, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5013C Clinical Placement 3", + "corequisite": "" + }, + { + "moduleCode": "PLC5015E", + "title": "Clinical Placement 5", + "moduleCredit": 6, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5014D Clinical Placement 4", + "corequisite": "" + }, + { + "moduleCode": "PLC5016 ", + "title": "Advanced Intervention and Therapy I", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5004 Psychological Intervention and Therapy", + "corequisite": "" + }, + { + "moduleCode": "PLC5017 ", + "title": "Advanced Intervention and Therapy II", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5016 Advanced Intervention and Therapy I", + "corequisite": "" + }, + { + "moduleCode": "PLC5018", + "title": "Specialised Applications in Clinical Psychology I", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5008 Graduate Research Methods", + "corequisite": "" + }, + { + "moduleCode": "PLC5019", + "title": "Specialised Applications in Clinical Psychology II", + "moduleCredit": 4, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5018 Specialised Applications in Clinical Psychology I", + "corequisite": "" + }, + { + "moduleCode": "PLC5020", + "title": "Research Project 2", + "moduleCredit": 12, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PLC5009 Research Proposal \nPLC5010 Masters research project", + "corequisite": "" + }, + { + "moduleCode": "PLS8001", + "title": "Cultivating Collaboration", + "moduleCredit": 1, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PLS8002", + "title": "Cultivating the Self", + "moduleCredit": 1, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PLS8003", + "title": "Cultivating Resilience", + "moduleCredit": 1, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PLS8004", + "title": "Optimizing Performance", + "moduleCredit": 1, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5000", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5101", + "title": "Project Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5103", + "title": "Contract Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5105", + "title": "Development Finance", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5106", + "title": "Design Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5107", + "title": "Time and Cost Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5109", + "title": "Project Management Law", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5111", + "title": "Special Topics in Project Management", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5112", + "title": "Research Methods", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5113", + "title": "Managing Projects using BIM", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5114", + "title": "Managing Complex Projects", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5115", + "title": "Project Finance Contracts and Agreements", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM5116", + "title": "Project Finance Case Studies", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM6103", + "title": "Construction Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PM6104", + "title": "International Project Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP2106", + "title": "Pharmacology 1", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PY1106", + "corequisite": "" + }, + { + "moduleCode": "PP2106A", + "title": "Pharmacology I", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP2107", + "title": "Pharmacology 2", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP2106", + "corequisite": "" + }, + { + "moduleCode": "PP2107A", + "title": "Pharmacology Ii", + "moduleCredit": 4, + "department": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP2131", + "title": "Pharmacology", + "moduleCredit": 1, + "department": "Pharmacology", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5010", + "title": "The LKY School Course", + "moduleCredit": 0, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5011", + "title": "Leading Stakeholders", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5012", + "title": "Leading Innovation and Change", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5013", + "title": "Ethical Leadership", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5014", + "title": "Leading Collaboration", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + true, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5015", + "title": "Principles and Applications of Risk Management", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5194 Natural Disasters, Environment and Climate Change", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5016", + "title": "Environmental Threats and Management Response", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5194 Natural Disasters, Environment and Climate Change", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5015 Principles and Applications of Risk Management is a pre-requisite. Participants should have taken this module or demonstrate a plan to cover its content at the outset of taking this module.", + "corequisite": "" + }, + { + "moduleCode": "PP5017", + "title": "Climate Change and Managing Uncertainty", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5194 Natural Disasters, Environment and Climate Change", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5015 Principles and Applications of Risk Management is a pre-requisite. Participants should have taken this module or demonstrate a plan to cover its content at the outset of taking this module.", + "corequisite": "" + }, + { + "moduleCode": "PP5018", + "title": "Disaster Scenarios and Resilience Building", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5194 Natural Disasters, Environment and Climate Change", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5015 Principles and Applications of Risk Management is a pre-requisite. Participants should have taken this module or demonstrate a plan to cover its content at the outset of taking this module.", + "corequisite": "" + }, + { + "moduleCode": "PP5019", + "title": "Economic Development Strategy", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "PP5216 Economic Growth in Developing Asia", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5020", + "title": "Analysis of Economic Growth", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "PP5216 Economic Growth in Developing Asia", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5021", + "title": "Digital Transformation and Economic Prosperity", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "PP5216 Economic Growth in Developing Asia", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5022", + "title": "Embracing Globalisation for Economic Growth", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "PP5216 Economic Growth in Developing Asia", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5023", + "title": "Artificial Intelligence, Data and Public Policy", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5024", + "title": "Bitcoin, Ethereum, Digital Currencies and Public Policy", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5025", + "title": "Cloud, 5G, IoT and Public Policy", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5026", + "title": "3D Printing, Robots and Public Policy", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5027", + "title": "Food Security", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "PP5169 Global Food Security", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5028", + "title": "Food System Resilience", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "PP5169 Global Food Security", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5029", + "title": "Agricultural Economics and Policy", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "PP5169 Global Food Security", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Introduction to Economics (or Principles of Economics)", + "corequisite": "" + }, + { + "moduleCode": "PP5030", + "title": "Sustainable Urban Food System", + "moduleCredit": 1, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "PP5169 Global Food Security", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5103", + "title": "Politics and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5104", + "title": "Empirical Analysis For Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "MP5104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5105", + "title": "Cost Benefit Analysis in Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5110A", + "title": "Policy Analysis Exercise", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5136", + "title": "Applied Public Sector Economics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "MP5136", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5137", + "title": "Public Management and Organisational Behaviour", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5138", + "title": "Econometrics for Public Policy Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5141", + "title": "The Global Financial Crisis-Policy Implications in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5142", + "title": "Liveable & Sustainable Cities - Lessons from Singapore & Other Cities", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5143", + "title": "Games, Decisions and Social Choice", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5144", + "title": "Decision and Game Theory for Public Managers", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5145", + "title": "Political Economy of Reform", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5146", + "title": "Decentralization, Governance & Sustainable Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5147", + "title": "Asian Global Cities", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5148", + "title": "Macroeconomics in an Open Economy with Focus on Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Ideally should have completed the core courses in Macroeconomics.", + "corequisite": "" + }, + { + "moduleCode": "PP5149", + "title": "Big Data, Official Statistics, and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5150", + "title": "Social Welfare in East Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5151", + "title": "Comparative Case Study Method", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5152", + "title": "International Political Economy of Energy and Climate", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5153", + "title": "Urban Development Policy and Planning in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5154", + "title": "The Global Change Agent", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5155", + "title": "International Political Economy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5156", + "title": "Moral Reasoning in the Policy Process", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5157", + "title": "Economics of Environmental Regulation", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5158", + "title": "International Relations of Asia after WWII", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5159", + "title": "Introduction to International Relations Theory", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5160", + "title": "America and Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5161", + "title": "Mindful Transformations in Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5162", + "title": "Economics of the Family for Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5163", + "title": "The Economics and Governance of Climate Change", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students are expected to have taken at least taken at least a Principles of Economics or Principles of Microeconomics course or equivalent at the graduate/undergraduate level.", + "corequisite": "" + }, + { + "moduleCode": "PP5164", + "title": "International Conflict Analysis and Resolution", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5165", + "title": "Markets and Growth", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "No pre-requisite. Required economic concepts would be taught as part of the course.", + "corequisite": "" + }, + { + "moduleCode": "PP5166", + "title": "Globalization, Health, and Human Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5167", + "title": "Public Policy and Economics of Health Systems", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "Applicable to those who have taken PP5246 and PP5278", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5168", + "title": "Public Service Leadership", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5169", + "title": "Global Food Security", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students are expected to have taken at least one economics course at graduate/undergraduate level.", + "corequisite": "" + }, + { + "moduleCode": "PP5170", + "title": "Microeconomic Theory for Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5403 Economic Foundations for Public Policy or Principles of Microeconomics", + "corequisite": "" + }, + { + "moduleCode": "PP5171", + "title": "Advanced Applied Econometrics for Policy Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5172", + "title": "Applications of Statistical Methods to Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5406 Quantitative Research Methods for Public Policy 1 (4MC) and PP5407 Quantitative Research Methods for Public Policy 2 (4MC) or PP6706 Quantitative Methods for Public Policy Research or equivalent. Good knowledge of statistical methods in theory and knowledge of at least one computer package for statistical analysis, for example STATA.", + "corequisite": "" + }, + { + "moduleCode": "PP5173", + "title": "Economics and Health in Developing Countries", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have taken a course covering basic microeconomic theory.", + "corequisite": "" + }, + { + "moduleCode": "PP5174", + "title": "International Politics: The Rules of the Game", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5175", + "title": "Decision-Making: Political and Psychological Influences", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5176", + "title": "China and the Global Economy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5177", + "title": "Progressive Cities in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5178", + "title": "Leadership and Decision-making Skills", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5179", + "title": "Air and Water Pollution", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5180", + "title": "Trade Policy and Global Value Chains", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5181", + "title": "State Fragility and Peacemaking", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to upper-level NUS\nundergraduates. If so, undergraduates should\nsufficient background in political science and\ninternational relations – for example they are single\nor double major in political science/IR or have a\ndeclared minor in political science/IR. If the students\nare from a liberal arts background, such as from\nYale-NUS, they should have a declared major in\nGlobal Affairs or Politics, Philosophy and\nEconomics.\nFor graduate students, students registering for this\nmodule should ideally have an undergraduate\ndegree in government, political science,\ninternational relations or Law. If the undergraduate\ndegree is general, they should have a declared\nundergraduate major/minor in government, political\nscience and/or international relations or have ac\nbasic background in political science or IR.", + "corequisite": "" + }, + { + "moduleCode": "PP5182", + "title": "Asia's Ascent: The Economics of World Order", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5183", + "title": "International Economic Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5184", + "title": "Communications for Public Leadership", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5185", + "title": "Energy Policy and Politics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5186", + "title": "Japan and ASEAN", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5187", + "title": "The Foreign Policy of Global Business", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5188", + "title": "Social Entrepreneurship", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5189", + "title": "Practices in Better and Effective Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5190", + "title": "Managing People", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5191", + "title": "Public Administration, Technology and Innovation", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5192", + "title": "Data Analytics: Science, Art and Applications", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5193", + "title": "Asian International and Strategic Thought", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5194", + "title": "Natural Disasters, Environment and Climate Change", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic economics", + "corequisite": "" + }, + { + "moduleCode": "PP5195", + "title": "Russia in Eurasian and World Politics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5196", + "title": "Education Economics and Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5197", + "title": "Cultural Competence", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5198", + "title": "Chinese Political Leadership and Economic Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5199", + "title": "The Economics of Corruption in Growth and Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students need to have knowledge in basic statistics and\nlinear regression.", + "corequisite": "" + }, + { + "moduleCode": "PP5201", + "title": "Singapore: Global City, Global Risks", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5202", + "title": "'Soft' power in the Asia-Pacific", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5203", + "title": "Behavioral Economics and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5101 Economics and Public Policy I, or\nPP5301 Economic Reasoning and Policy, or\nPP5501 Economic Applications for Public Organisations", + "corequisite": "" + }, + { + "moduleCode": "PP5204", + "title": "Evolving Practices of Governance in Singapore", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5205", + "title": "Economic Policy in a Global Economy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5206", + "title": "Politics and Policy in Southeast Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5208", + "title": "Water Law, Governance and Management in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5209", + "title": "Exercising Leadership", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5210", + "title": "UN and Global Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5211", + "title": "Analytical Issues in Money & Banking", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Need to have completed PP5101 Economics and Public Policy I and PP5102 Economics and Public Policy II and basic statistics. Students are expected to know how to manipulate data (i.e. calculate means, variances, standard deviation etc.).", + "corequisite": "" + }, + { + "moduleCode": "PP5212", + "title": "Financial Issues, Trade and Investment in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Need to have completed PP5101 Economics and Public Policy I, PP5102 Economics and Public Policy II and basic statistics.", + "corequisite": "" + }, + { + "moduleCode": "PP5213", + "title": "Contemporary Financial Policy Issues in Emerging Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Need to have completed PP5101 Economics and Public Policy I and PP5102 Economics and Public Policy II.", + "corequisite": "" + }, + { + "moduleCode": "PP5214", + "title": "Ethics & the Public Official", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "MP5214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5215", + "title": "Changes in Singapore Political Economy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "EC2373/SSA2220", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5216", + "title": "Economic Growth in Developing Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Introductory courses on microeconomics and macroeconomics", + "corequisite": "" + }, + { + "moduleCode": "PP5217", + "title": "Innovation", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5242M", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5218", + "title": "Foresight Methods and Analysis for Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5220", + "title": "Innovation and Technology Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5221", + "title": "The EU: Special Topics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5242L", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5222", + "title": "Population, Health and Social Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5223", + "title": "Population Ageing, Public Policy, and Family", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5224", + "title": "Value- Focused Negotiations", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5225", + "title": "India's Foreign Policy and National Security", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "PP5242N", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5226", + "title": "Social Policy Design", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5227", + "title": "Environmental and Natural Resource Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "MP5227A, MP5227B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5228", + "title": "Evidence-Informed Policy Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "None required. Statistics or research methods background can be helpful.", + "corequisite": "" + }, + { + "moduleCode": "PP5229", + "title": "Education policy in Singapore: comparative perspectives", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5230", + "title": "Strategic Management in Public Organisations", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5231", + "title": "Ethics and Global Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5232", + "title": "Applied Environmental Economics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5451: Foundations of Sustainable Development and Environmental Economics OR Approval by Instructor", + "corequisite": "" + }, + { + "moduleCode": "PP5233", + "title": "Organization Theory and Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5234", + "title": "Economics of Developing Countries", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Introductory statistics and econometrics, intermediate microeconomics. Working knowledge of statistics and econometrics is essential for this course. Doing well in this course requires good understanding of microeconomic theory.", + "corequisite": "" + }, + { + "moduleCode": "PP5235", + "title": "Development Policy in Southeast Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5236", + "title": "Poverty, Inequality, and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5237", + "title": "Strategies for Poverty Alleviation", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5238", + "title": "Urban Growth and Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5239", + "title": "Understanding and Managing Corruption", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5240", + "title": "Topics in Applied Policy Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5240A", + "title": "Comparative Strategic Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5240B", + "title": "Measuring and Monitoring Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241", + "title": "India's Economic Development and Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241A", + "title": "Topics in Economics or Quantitative Analysis: Developmenteconomics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241D", + "title": "Role of Microfinance in Developing Countries", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241E", + "title": "Special Topics on Development Policy in SE Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241F", + "title": "India's development: a comparative perspective with China", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241G", + "title": "Asean", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241H", + "title": "Social Movements and Social Markets", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241J", + "title": "Asia in the World Economy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5241K", + "title": "Political Economy of International Trade", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242", + "title": "Policy Responses to Disasters", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242A", + "title": "Integrated Approaches To Sustainable Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242C", + "title": "Human Rights and International Relations", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242E", + "title": "Change Agents and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242F", + "title": "Strategic Thinking in Business & Government", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242H", + "title": "Perspectives on the Global War on Terror: Implications for policy-making", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242I", + "title": "Return of Great Power Politics in the Age of Globalisation", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242J", + "title": "Effective Implementation: Learning from Effective Implementers", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242K", + "title": "Policies for Urban Intervention", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242L", + "title": "The EU as an International Actor", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242P", + "title": "Asian Regionalism and Regional Order", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5242Q", + "title": "Non-traditional Security Issues and Global Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5243", + "title": "Infrastructure Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5244", + "title": "Public Sector Reform in Developing Countries", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5245", + "title": "Network Economics & Strategies", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5246", + "title": "Public Policy and Management of Health Systems", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5247", + "title": "International Economic Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5248", + "title": "International Conflict Resolution", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5249", + "title": "Media, Public Opinion & Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5250", + "title": "Economic Development Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5251", + "title": "Institutions and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5252", + "title": "Ethnic Politics and Governance in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5253", + "title": "International Financial Policy and Issues", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5254", + "title": "WMD Proliferation and International Security", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5255", + "title": "Energy Policy & Security in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5256", + "title": "Financial Regulation and Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5257", + "title": "Urban Water Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5258", + "title": "International Relations and Diplomacy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5259", + "title": "Crisis Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5260", + "title": "Intelligence, National Security & Policymaking", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5261", + "title": "International Security - Concepts, Issues & Policies", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5262", + "title": "Public Roles of the Private Sector", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5263", + "title": "Global Issues and Institutions", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5264", + "title": "States, Markets and International Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5265", + "title": "Law & Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5266", + "title": "Global Health Policy and Issues", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5267", + "title": "Urban Transport Policy: A Global View", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5268", + "title": "Institutional Design and Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5269", + "title": "Environmental Economics and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5270", + "title": "Economic Policy in China", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5271", + "title": "Political Risk Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5272", + "title": "Energy Systems and Climate Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5273", + "title": "Political Islam and Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5274", + "title": "Financial Management for Policy Makers", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5275", + "title": "Central Banks and Economic Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5276", + "title": "Dialogue, Facilitation and Consensus Building", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5277", + "title": "Singapore's Development: A Comparative Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5278", + "title": "Health Economics and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5279", + "title": "Clusters and National Competitiveness", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5280", + "title": "Politics and Development: Approaches, Issues and Cases", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5281", + "title": "Business and the Environment", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5282", + "title": "Macroeconomic Programming and Policies", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5285", + "title": "State-Society Relations in Singapore", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5286", + "title": "Comparative Public Management Reform", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5287", + "title": "Leadership and Teamwork", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5288", + "title": "Labour Market Issues and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Knowledge of college-level calculus, advanced-statistics, and introductory microeconomics is desirable to grasp the models and the findings in the readings.", + "corequisite": "" + }, + { + "moduleCode": "PP5289", + "title": "Women, Leadership & Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5290", + "title": "Policymaking in China: Structure & Process", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5291", + "title": "Security in Asia-Pacific", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5292", + "title": "The EU, ASEAN and Regional Integration", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5293", + "title": "Ruling the Net: It and Policy Making", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5294", + "title": "Dynamic Modelling of Public Policy Systems", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5295", + "title": "Aid Governance", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5296", + "title": "Trade, Investment and Integration Issues in ASEAN", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5101, PP5501 or prior training in basic microeconomic theory", + "corequisite": "" + }, + { + "moduleCode": "PP5297", + "title": "Public Policy for Sustainability", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5298", + "title": "Singapore's Development Experience", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5299", + "title": "Singapore: The City", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5301", + "title": "Economic Reasoning and Policy", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5303", + "title": "Public Management", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5304", + "title": "Attachment Programme in Singapore", + "moduleCredit": 8, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "MPM5004", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5308", + "title": "Frameworks For Policy Analysis", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5310", + "title": "Public Management Seminars", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5311", + "title": "Globalisation and Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5312", + "title": "Public Financial Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5313", + "title": "Topics in Public Management", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5401", + "title": "Policy Challenges", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5402", + "title": "Policy Process and Institutions", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5403", + "title": "Economic Foundations for Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5405", + "title": "Public Administration and Politics", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5402 Policy Process and Institutions", + "corequisite": "" + }, + { + "moduleCode": "PP5406", + "title": "Quantitative Research Methods for Public Policy 1", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5407", + "title": "Quantitative Research Methods for Public Policy 2", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5406", + "corequisite": "" + }, + { + "moduleCode": "PP5408", + "title": "Qualitative Research Methods for Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5409", + "title": "Foundations of Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "PP5402 Policy Process and Institutions and PP5405 Public Administration and Politics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5410", + "title": "Working with clients: PAE Basics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed Year 1 of the MPP or MIA programme", + "corequisite": "" + }, + { + "moduleCode": "PP5414", + "title": "Foundations of Sustainable Development and Environmental Economics", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5415", + "title": "Foundations of Public Management (Gateway)", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5417", + "title": "Globalization, Nation-Building, & Singapore’s Identity", + "moduleCredit": 12, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Preceeded by a year at Science Po (Part One of the capstone)", + "corequisite": "Preceeded by a year at Science Po (Part One of the capstone)" + }, + { + "moduleCode": "PP5504", + "title": "Public Finance and Budgeting", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5507", + "title": "Policy Innovation Lab", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5508", + "title": "Regional Integration - the cases of ASEAN and EU", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5509", + "title": "Pensions and Retirement Policies", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5510", + "title": "Governing Cities of Tomorrow", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5511", + "title": "Systemic and Integrated Policy Design and Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5512", + "title": "US-China Relations and Great Power Policy Making", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5513", + "title": "Governing Nation-State and Global-City Singapore", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5514", + "title": "ASEAN and Regionalism in Southeast Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5515", + "title": "Gender and Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5516", + "title": "Practical Political Risk Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should take essential skills workshops or international relations and political economy modules prior to enrolling in the module.", + "corequisite": "" + }, + { + "moduleCode": "PP5517", + "title": "Gender and Public Policy: The life course approach", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5518", + "title": "Pragmatism and Public Morality in Singapore", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5519", + "title": "Financial Management for Nonprofit Organisations", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5520", + "title": "The Political Economy of Reform in China", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5521", + "title": "The Economic Analysis of Law", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5522", + "title": "The Rule of Law", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5524", + "title": "Diversity Management in Public Organizations", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5660", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5661", + "title": "Internship", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5662", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5663", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5664", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5701", + "title": "Economic Applications for Public Organizations", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5702", + "title": "Public Administration in Theory and Practice", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5703", + "title": "Public Finance and Budgeting", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5704", + "title": "Policy Analysis and Programme Evaluation", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5705", + "title": "Comparative Public Policy and Management: Singapore and Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5706", + "title": "Economic and Business Environment", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "BMM5002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "No pre-requisite is required as the proposed module assumes no previous knowledge in economics, business or finance.", + "corequisite": "PP5701 Economic Applications for Public Organizations" + }, + { + "moduleCode": "PP5711", + "title": "Urban Development and Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5712", + "title": "International Economic Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5713", + "title": "Financial Regulation and Development", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5714", + "title": "International Financial Policy and Issues", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5715", + "title": "Clusters and National Competitiveness", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5716", + "title": "Security in Asia-Pacific", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5717", + "title": "Political Economy of East Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5718", + "title": "Policymaking in China: Structure and Process", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5721", + "title": "Public Sector Risk Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic management and economics knowledge", + "corequisite": "" + }, + { + "moduleCode": "PP5722", + "title": "Strategic Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic management and economics knowledge", + "corequisite": "" + }, + { + "moduleCode": "PP5723", + "title": "Political Economy of Taiwan, Hong Kong and Singapore", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Basic economics and political science", + "corequisite": "" + }, + { + "moduleCode": "PP5728", + "title": "Technology and Innovation Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5729", + "title": "Public Sector Communications", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5801", + "title": "Economic Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5802", + "title": "Policy Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5803", + "title": "Public Management", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5804", + "title": "Governance Study Project", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5901", + "title": "Introduction to International Relations Theory", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5902", + "title": "International Security - Concepts, Issues & Policies", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5903", + "title": "International Political Economy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5904", + "title": "Research Methods in International Affairs", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5905", + "title": "Foreign Policy Analysis", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5906", + "title": "International Economic Development in Asia", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5908", + "title": "Global Governance in a Changing World", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5909", + "title": "Geopolitics of the Asia-Pacific", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "Nil, but PP901 International Relations: Theory and Practice or/and PP5902 International Security recommended" + }, + { + "moduleCode": "PP5910", + "title": "MIA Thesis", + "moduleCredit": 8, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP5911", + "title": "MIA Capstone Project", + "moduleCredit": 8, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP6702", + "title": "Foundations of Public Policy: Theories and Methods", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP6703", + "title": "Foundations of Public Administration", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP6704", + "title": "The Economics of Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP5101: Economics and Public Policy I", + "corequisite": "" + }, + { + "moduleCode": "PP6705", + "title": "The Politics of Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "PP5268 Institutional Design and Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP6706", + "title": "Quantitative Methods for Public Policy Research", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP6701 Research Methods for Public Policy I", + "corequisite": "" + }, + { + "moduleCode": "PP6707", + "title": "Qualitative Methods for Public Policy Research", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP6708", + "title": "Research Design in Public Policy", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PP6770", + "title": "Public Policy Graduate Seminar", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PPX5702B", + "title": "Department Exchange Module", + "moduleCredit": 2, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PPX5704B", + "title": "Department Exchange Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PPX5704C", + "title": "Department Exchange Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PPX5704D", + "title": "Department Exchange Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PPX5704E", + "title": "Department Exchange Module", + "moduleCredit": 4, + "department": "LKYSPP Dean's Office", + "faculty": "LKY School of Public Policy", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR1110", + "title": "Foundations for Medicinal Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PR1110A", + "title": "Foundations for Medicinal Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "PR1110", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PR1111", + "title": "Pharmaceutical biochemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PR1111A", + "title": "Pharmaceutical Biochemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "PR1111", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PR1120", + "title": "Microbiology in Pharmacy", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR1140", + "title": "Pharmacy Professional Skills Development I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR1142", + "title": "Pharmaceutical Statistics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR1150", + "title": "Professional Identity Development I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Not applicable", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "PR1151 Applied Patient Care Skills I", + "corequisite": "Not applicable" + }, + { + "moduleCode": "PR1151", + "title": "Applied Patient Care Skills I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Admission to the B.Pharm.(Hons) programme", + "corequisite": "PR1150 Professional Identity Development I" + }, + { + "moduleCode": "PR1152", + "title": "Pharmacy Foundations: Science & Therapeutics I", + "moduleCredit": 8, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "Students admitted into the Pharm Sci major and Pharm Sci minor programmes.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the B.Pharm.(Hons) Programme", + "corequisite": "" + }, + { + "moduleCode": "PR1153", + "title": "Pharmacy Foundations: Science & Therapeutics II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "Students admitted into the Pharm Sci major and Pharm Sci minor programmes.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1152 Pharmacy Foundations: Science & Therapeutics I", + "corequisite": "" + }, + { + "moduleCode": "PR1301", + "title": "Complementary Medicine and Health", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "GEK1507", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR2101", + "title": "Dosage Form Design I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1102", + "corequisite": "" + }, + { + "moduleCode": "PR2102", + "title": "Pharmacy Law", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1103", + "corequisite": "" + }, + { + "moduleCode": "PR2103", + "title": "Pharmacostatistics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "ST1131 or ST1131A or ST1232 or ST2334", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR2104", + "title": "Pharmaceutical Analysis I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1101", + "corequisite": "" + }, + { + "moduleCode": "PR2105", + "title": "Pharmaceutical Microbiology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A -level Chemistry and Biology or equivalent exam, excluding CM1417 or CM1417X and LSM1301 or LSM1301FC or LSM1301X", + "corequisite": "" + }, + { + "moduleCode": "PR2114", + "title": "Formulation & Technology I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Pass in A-level H2 Chem or the equivalent", + "corequisite": "" + }, + { + "moduleCode": "PR2114A", + "title": "Formulation & Technology I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PR2114", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "H2 Chemistry or equivalent", + "corequisite": "" + }, + { + "moduleCode": "PR2115", + "title": "Medicinal Chemistry for Drug Design", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110 or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR2115A", + "title": "Medicinal Chemistry for Drug Design", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "PR2115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110A, PR1111A", + "corequisite": "" + }, + { + "moduleCode": "PR2122", + "title": "Biotechnology for Pharmacy", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1111 or PR1111A", + "corequisite": "" + }, + { + "moduleCode": "PR2131", + "title": "Pharmacy Professional Skills Development II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1140", + "corequisite": "" + }, + { + "moduleCode": "PR2133", + "title": "Pharmacotherapeutics I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PA1113, PR1111", + "corequisite": "PX2108" + }, + { + "moduleCode": "PR2134", + "title": "Self Care", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PX2108, PA1113, PR1140", + "corequisite": "" + }, + { + "moduleCode": "PR2135", + "title": "Pharmacotherapeutics II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PX2108, PA1113", + "corequisite": "" + }, + { + "moduleCode": "PR2143", + "title": "Pharmaceutical Analysis for Quality Assurance", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "CN4233E, CN4233R and PHS2143", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PR1110", + "corequisite": "" + }, + { + "moduleCode": "PR2156", + "title": "Integumentary & Ocular Systems: Science and Therapeutics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1152 Pharmacy Foundations: Science & Therapeutics I", + "corequisite": "" + }, + { + "moduleCode": "PR2202", + "title": "Cosmetics & Perfumes", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR2288", + "title": "Basic UROPS in Pharmacy I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "PR1110/PR1110A Foundations for Medicinal Chemistry or PHS1110 Foundation for Medicinal and Synthetic Chemistry, and departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "PR2289", + "title": "Basic UROPS in Pharmacy II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110/PR1110A Foundations for Medicinal Chemistry or PHS1110 Foundation for Medicinal and Synthetic Chemistry, and departmental approval", + "corequisite": "" + }, + { + "moduleCode": "PR3101", + "title": "Principles Of Medicinal Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1101", + "corequisite": "" + }, + { + "moduleCode": "PR3102", + "title": "Dosage Form Design II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1102 and PR2105", + "corequisite": "" + }, + { + "moduleCode": "PR3103", + "title": "Pharmaceutical Analysis II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2104", + "corequisite": "" + }, + { + "moduleCode": "PR3104", + "title": "Pharmaceutical Biotechnology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PASS PR1101 OR LSM1101 OR LSM1201 OR LSM1301 OR LSM1301FC OR LSM1301X OR CM1121 OR GCE 'A' LEVEL OR H2 BIOLOGY OR EQUIVALENT.", + "corequisite": "" + }, + { + "moduleCode": "PR3105", + "title": "Pharmacotherapy I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PX3108 and PP2107/PA2107", + "corequisite": "" + }, + { + "moduleCode": "PR3106", + "title": "Pharmacokinetics & Drug Disposition", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PP2106/PA2106", + "corequisite": "" + }, + { + "moduleCode": "PR3107", + "title": "Pharmacy Practice II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1103", + "corequisite": "" + }, + { + "moduleCode": "PR3116", + "title": "Concepts in Pharmacokinetics and Biopharmaceutics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PA1113", + "corequisite": "" + }, + { + "moduleCode": "PR3117", + "title": "Formulation & Technology II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PR2114 or PR2114A", + "corequisite": "" + }, + { + "moduleCode": "PR3122", + "title": "Self Care II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2134", + "corequisite": "" + }, + { + "moduleCode": "PR3123", + "title": "Formulation &Technology II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1120\nPR2114", + "corequisite": "" + }, + { + "moduleCode": "PR3124", + "title": "Pharmacotherapeutics III", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1120 \nPR2133", + "corequisite": "" + }, + { + "moduleCode": "PR3136", + "title": "Pharmacotherapeutics IV", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2135", + "corequisite": "" + }, + { + "moduleCode": "PR3137", + "title": "Pharmacy Professional Skills Development III", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2131, PR2134, PR3124, PR3146", + "corequisite": "PR3136 Pharmacotherapeutics IV" + }, + { + "moduleCode": "PR3144", + "title": "Principles of Research Methods", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GER1000", + "corequisite": "" + }, + { + "moduleCode": "PR3145", + "title": "Compliance & Good Practices in Pharmacy", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2143", + "corequisite": "" + }, + { + "moduleCode": "PR3146", + "title": "Pharmacy Law in Singapore", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PR1140", + "corequisite": "" + }, + { + "moduleCode": "PR3202", + "title": "Community Health & Preventative Care", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "PR3122", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2134", + "corequisite": "" + }, + { + "moduleCode": "PR3204", + "title": "Medicinal Natural Products", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1110/PR1110A Foundations for Medicinal Chemistry or PHS1110 Foundation for Medicinal and Synthetic Chemistry, and PR2143 Pharmaceutical Analysis for Quality Assurance or PHS2143 Analytical Techniques and Pharmaceutical Applications", + "corequisite": "" + }, + { + "moduleCode": "PR3288", + "title": "Advanced UROPS in Pharmacy I", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "By permission or PR2288 or PR2289", + "corequisite": "" + }, + { + "moduleCode": "PR3289", + "title": "Advanced UROPS in Pharmacy II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "By permission or PR2288 or PR2289", + "corequisite": "" + }, + { + "moduleCode": "PR3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP1001 Career Planning & Preparation or NCC1001 Headstart Module (A Career Development Programme) or NCC1000 Stepup Module (A Career Development Programme) or CFG1001 Headstart Module or CFG1000 StepUp Module; students must have completed 3 regular semesters of study, have declared Pharmacy as first major and have completed a minimum of 32 MCs in Pharmacy major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "PR4101", + "title": "Pharmacotherapy II", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR3105", + "corequisite": "" + }, + { + "moduleCode": "PR4102", + "title": "Pharmacotherapy III", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR4101", + "corequisite": "" + }, + { + "moduleCode": "PR4103", + "title": "Research Methodology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2103, PR2104 and PR3105", + "corequisite": "" + }, + { + "moduleCode": "PR4104", + "title": "Pharmacy Practice III", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "PR3105", + "corequisite": "" + }, + { + "moduleCode": "PR4105", + "title": "Natural Products", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass PR1101", + "corequisite": "" + }, + { + "moduleCode": "PR4106", + "title": "Dosage Form Design III", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1102", + "corequisite": "" + }, + { + "moduleCode": "PR4138", + "title": "Pharmacy Professional Skills Development IV", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "PR3137 \nPR3136 \nPR3146 \nPR2134", + "corequisite": "" + }, + { + "moduleCode": "PR4195", + "title": "Scientific Evaluation, Analysis and Communication", + "moduleCredit": 12, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students from non-Pharmacy majors, PR4196 unless deemed\nunsuitable by the HOD or her representatives", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of Pharmacy Year 3 requirement and have not met\nthe criteria for reading PR4196 as listed below:\n(i) Students who are not within the 50th percentile of the cohort based on their Year 3 Semester 1 CAP score.\n(ii) Student who are deemed by the HOD and/or department’s\ndesignated representatives to be unsuitable to read\nPR4196 due to medical, personal and safety reasons. For\npoint \n(ii), accompanying document from a medical\npractitioner or testimonial from the students’ supervisor will\nbe needed to aid in the decision making by the HOD and/or\ndepartment’s designated representatives.\n(iii) Students who are required to read ES1000/ES1000FC\nBasic English and/or ES1102 English for Academic\nPurposes must pass these modules.", + "corequisite": "" + }, + { + "moduleCode": "PR4196", + "title": "Pharmacy Research Project and Scientific Communication", + "moduleCredit": 16, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students from non-Pharmacy majors, PR4199", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completion of Pharmacy Year 3 requirement and subject to departmental approval. Students who are required to read ES1000 Basic English and/or ES1102/ES1103 English for Academic Purposes must pass these modules.", + "corequisite": "" + }, + { + "moduleCode": "PR4197", + "title": "Pharmacy Internship I", + "moduleCredit": 6, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2134, PR2133, PR2135 and PR3146", + "corequisite": "" + }, + { + "moduleCode": "PR4197A", + "title": "Pharmacy Internship I", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PR4197", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To pass the pharmacy undergraduate Year 1 to 3 curriculum (Pharmacy practice / self-care / pharmacotherapeutics modules as essential). Students may appeal on a case by case basis to read this module if they have not fulfilled the above requirements.", + "corequisite": "" + }, + { + "moduleCode": "PR4198", + "title": "Pharmacy Internship II", + "moduleCredit": 6, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2134, PR2133, PR2135 and PR3146", + "corequisite": "" + }, + { + "moduleCode": "PR4198A", + "title": "Pharmacy Internship II", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PR4198", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To pass the pharmacy undergraduate Year 1 to 3 curriculum (Pharmacy practice / self-care / pharmacotherapeutics modules as essential). Students may appeal on a case by case basis to read this module if they have not fulfilled the above requirements.", + "corequisite": "" + }, + { + "moduleCode": "PR4199", + "title": "Honours Project in Pharmacy", + "moduleCredit": 12, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "PR4196", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Completion of Level 3000 modules and subject to departmental approval.", + "corequisite": "" + }, + { + "moduleCode": "PR4201", + "title": "Pharmaceutical Marketing", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "BH1003 or MKT1003 or CS3261", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1140 Pharmacy Professional Skills Development I", + "corequisite": "" + }, + { + "moduleCode": "PR4203", + "title": "Pharmacy Practice IV", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2131 Pharmacy Professional Skills Development II", + "corequisite": "" + }, + { + "moduleCode": "PR4204", + "title": "Special Drug Delivery", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR3117 Formulation & Technology II or PR3301 Pharmaceutical Dosage Forms or PHS2117 Principles of Pharmaceutical Formulations II", + "corequisite": "" + }, + { + "moduleCode": "PR4205", + "title": "Bioorganic Principles of Medicinal Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR2115/PR2115A Medicinal Chemistry for Drug Design or PHS2115 Basic Principles of Drug Design and Development or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR4206", + "title": "Industrial Pharmacy", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "CN4233E and CN4233R", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR1142 Pharmaceutical Statistics OR GER1000, and PR3117 OR PR3301", + "corequisite": "" + }, + { + "moduleCode": "PR4207", + "title": "Applied Pharmacokinetics and Toxicokinetics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PR3116 Concepts in Pharmacokinetics & Biopharmaceutics or PHS3116 Pharmacokinetics and Biopharmaceutics.", + "corequisite": "" + }, + { + "moduleCode": "PR5113", + "title": "Clinical Pharmacokinetics & Therapeutic Drug Monitoring", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5115", + "title": "Drug Information, Critical Literature Evaluation and Biostatistics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "By special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5130", + "title": "Advanced Pharmacotherapy I", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5131", + "title": "Advanced Pharmacotherapy II", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5131A", + "title": "Advanced Pharmacotherapy IIA", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. programme or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5132", + "title": "Advanced Pharmacotherapy III", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5132A", + "title": "Advanced Pharmacotherapy IIIA", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. programme or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5133", + "title": "Advanced Pharmacotherapy in Special Populations", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5134", + "title": "Advanced Skills in Pharmacy Practice", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5134A", + "title": "Physical Assessment and Diagnostic Tests for Advanced Pharmacy Practice", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass in PR5134.", + "corequisite": "" + }, + { + "moduleCode": "PR5135", + "title": "Foundations in Advanced Pharmacy Practice", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5136", + "title": "Seminar and Teaching", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5137", + "title": "Advanced Pharmacotherapy in Geriatrics", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. programme or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5150", + "title": "Ambulatory Care Clerkship", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5151", + "title": "Acute Care Medicine Clerkship", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5152", + "title": "Adult General Medicine Clerkship", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5153", + "title": "Critical Care Clerkship", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5154", + "title": "Drug Information Clerkship", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5198", + "title": "Graduate Seminar Module in Pharmacy", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5211", + "title": "Pharmaceutical Analysis IV", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5212", + "title": "Advanced Topics in Medicinal Chemistry", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5213", + "title": "Pharmaceutical Process Validation", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5214", + "title": "Advances in Tablet Technology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5216", + "title": "Advances in Drug Delivery", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5217", + "title": "Formulation Science", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5218", + "title": "Methodologies in Product Development", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance into the MPST programme or special permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5219", + "title": "Product Quality Management", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5220", + "title": "Bioprocess Technology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5221", + "title": "Molecular Targets in Drug Discovery", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5222", + "title": "Drug Metabolism", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5224", + "title": "Pharmacoepidemiology", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5225", + "title": "Preformulation Science", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5230", + "title": "Pharmacoeconomics and Outcomes Research", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance into PharmD or relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5230A", + "title": "Pharmacoeconomics", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "PR5230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. programme or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5230B", + "title": "Outcomes Research", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "PR5230", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. programme or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5231", + "title": "Complementary and Alternative Medicine", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5232", + "title": "Nutrition, Disease Prevention and Health Promotion", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5233", + "title": "Pharmacy Practice Management", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5234", + "title": "Pharmacogenomics and Pharmacogenetics", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance into PharmD or relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PR5234A", + "title": "Concepts in Pharmacogenomics", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "PR5234", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. programme or graduate programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5235", + "title": "Ethics in Pharmacy Practice", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5237", + "title": "Management of Older Patients", + "moduleCredit": 2, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PR5238", + "title": "Advanced Community Case Studies", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "1) PR 5134 Advanced Skills in Pharmacy Practice\n\n2) Prior to module registration, candidates should identify a supporting supervisor from their practice institution and a self-identified practice site for the self-directed work-based practicum component.", + "corequisite": "" + }, + { + "moduleCode": "PR5239", + "title": "Clinical Pharmacy Research Project", + "moduleCredit": 12, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5250", + "title": "Elective Clerkship I", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5251", + "title": "Elective Clerkship II", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5252", + "title": "Elective Clerkship III", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the Pharm.D. program and require min CAP of 3.5 after Year 1 didactic component, or by permission.", + "corequisite": "" + }, + { + "moduleCode": "PR5253", + "title": "Elective Clerkship IV", + "moduleCredit": 5, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Acceptance in the PharmD. programme or by permission", + "corequisite": "" + }, + { + "moduleCode": "PR5302", + "title": "Regulation of Drug Development", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(PR2101, PR3102 and PR4106) or PR3301", + "corequisite": "" + }, + { + "moduleCode": "PR5303", + "title": "Good Regulatory Practices", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(PR2101, PR3102 and PR4106) or PR3301", + "corequisite": "" + }, + { + "moduleCode": "PR5304", + "title": "Fundamental Topics in Pharmaceutical Science", + "moduleCredit": 4, + "department": "Pharmacy", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Relevant degree or special permission", + "corequisite": "" + }, + { + "moduleCode": "PRV1111", + "title": "Cariology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV2110", + "title": "Preventive Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV2120", + "title": "Preclinical Periodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV3110", + "title": "Preventive Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV3112", + "title": "Dental Public Health", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV3120", + "title": "Periodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV3210", + "title": "Orthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV3220", + "title": "Paediatric Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV4110", + "title": "Preventive Dentistry & DPH", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV4120", + "title": "Periodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV4210", + "title": "Orthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PRV4220", + "title": "Paediatric Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS1101E", + "title": "Introduction to Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1003K, GEK1003, PS1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2203", + "title": "Ancient Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EU2203", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2204", + "title": "Modern Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "EU2204", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2231", + "title": "Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2232", + "title": "Islamic and Hindu Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2233", + "title": "Political Ideologies", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2024", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2234", + "title": "Introduction to Comparative Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2236", + "title": "European Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU2217", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2237", + "title": "Introduction to International Relations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2238", + "title": "International Politics of Northeast Asia", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2239", + "title": "Foreign Policy and Diplomacy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2010, GEM2010K, PS2209, PS2209B", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2240", + "title": "Introduction to Public Administration", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2241", + "title": "Public Administration in Asia", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2012", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2244", + "title": "Public Administration in Singapore", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA2222", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2245", + "title": "Southeast Asian Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SE2213", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2247", + "title": "South Asian Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2248", + "title": "Chinese Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2249", + "title": "Government and Politics of Singapore", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK2003, GEM2003K, PS1102, PS2101, PS2101B, SS2209PS, SSA2209", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2250", + "title": "International Politics of Southeast Asia", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2251", + "title": "The Region in the Postcolonial World", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2254", + "title": "American Government and Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2255", + "title": "Politics of the Middle East", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK2025", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2256", + "title": "Politics on Screen", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2043 Politics on Screen", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2257", + "title": "Contemporary African Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS2258", + "title": "Introduction to Political Theory", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3225", + "title": "Political Islam", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3232", + "title": "Democratic Theory", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3233", + "title": "Political and International Ethics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3236", + "title": "Ethnicity and Religion in Asian Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3237", + "title": "Women and Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3238", + "title": "International Political Economy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3239", + "title": "International Conflict Analysis", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3240", + "title": "International Security", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3242", + "title": "US Foreign Policy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3243", + "title": "Public Sector Organisational Behaviour", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3245", + "title": "Public Personnel Administration", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3246", + "title": "Public Ethics and Corruption", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3247", + "title": "The Rise of China and International Order", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3249", + "title": "Singapore's Foreign Policy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SSA3205", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3251", + "title": "International and Regional Organisations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "EU3228", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PS1101E, PS2237", + "corequisite": "" + }, + { + "moduleCode": "PS3252", + "title": "Human Rights in International Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK3006", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3257", + "title": "Political Inquiry", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 12 MCs in Political Science or 16 MCs in GL or GL-recognised nonlanguage modules.", + "corequisite": "" + }, + { + "moduleCode": "PS3258", + "title": "Research Methods in Political Science", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PS3257", + "corequisite": "" + }, + { + "moduleCode": "PS3259", + "title": "American Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3260", + "title": "Politics and the Visual", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GEK3005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3262", + "title": "Managing Non-Profit Organisations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3263", + "title": "Comparative Study of Development", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3265", + "title": "Civil-Military Relations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed PS1101E", + "corequisite": "" + }, + { + "moduleCode": "PS3266", + "title": "Politics, Music and Society", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK3007 Politics, Music and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3267", + "title": "German Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3269", + "title": "Medieval Western Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PS2204/EU2204 Modern Western Political Thought", + "corequisite": "" + }, + { + "moduleCode": "PS3271", + "title": "Public Policy-Making", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3272", + "title": "The International Relations of Sub-Saharan Africa", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3273", + "title": "Singapore Politics in Comparative Perspective", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3274", + "title": "Environmental Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3311", + "title": "International Ethics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "(Yale-NUS Module) YSS3270 Ethics and Global Affairs \nPS3233 Political and International Ethics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3312", + "title": "World Orders", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3550", + "title": "Political Science Internship", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should:\n- have completed a minimum of 24 MC in Political Science; and\n- have declared Political Science as their Major.", + "corequisite": "" + }, + { + "moduleCode": "PS3551", + "title": "FASS Undergraduate Research Opportunity (UROP )", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PS3880", + "title": "Topics in Political Science", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil for the ‘parent’ module. Particular topics may\nhave pre‐requisites appropriate to their content.\nFor example, the first proposed topic with be\nPS3880A Modern Chinese Political Thought,\nwhich will have as a pre‐requisite PS2253 Chinese\nPolitical Thought (which focuses on the ancient\nChinese classics).", + "corequisite": "" + }, + { + "moduleCode": "PS3880A", + "title": "Modern Chinese Political Thought", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3880D", + "title": "Politics of the United Nations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3880E", + "title": "Topics in PS: Human Trafficking in Southeast Asia", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3880F", + "title": "Topics in PS: Quantitative Approaches to Intl Relations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have read PS2237 Introduction to IR and PS3257 Political Inquiry.", + "corequisite": "" + }, + { + "moduleCode": "PS3880G", + "title": "Topics in PS: Research Design and Methods", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS3880H", + "title": "The Politics of European Integration", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS4201", + "title": "Contemporary Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/ recognised modules or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/ recognised modules or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4202", + "title": "Political Parties & Elections", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4203", + "title": "China's Foreign Policy", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4205", + "title": "Contemporary Politics of Southeast Asia", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SE or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4206", + "title": "Regional Security in the Asia Pacific", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4208", + "title": "Theories of International Relations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS or 28 MCS in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4209", + "title": "Public Organisation Theory and Practice", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS, or 28 MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4210", + "title": "Public Policy Analysis", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4211", + "title": "Political Theology", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4213", + "title": "International Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS3203B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4215", + "title": "Politics of Non-Violence", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4216", + "title": "The Study of War", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4217", + "title": "Major Political Thinkers", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4217A", + "title": "Major Political Thinkers: Plato & Rousseau", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4227A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4217C", + "title": "Major Political Thinkers: Montaigne", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4227C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/ German / Spanish] recognised modules with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4217E", + "title": "Major Political Thinkers: Oakeshott", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\n(1) Completed 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track. \n(2) PS2204/EU2204\n\nCohort 2015 onwards:\n(1) Completed 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/ recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n(2) PS2204/EU2204", + "corequisite": "" + }, + { + "moduleCode": "PS4217F", + "title": "Major Political Thinkers: Hobbes", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\n(1) Completed 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n(2) PS2204/EU2204\n\nCohort 2015 onwards:\n(1) Completed 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n(2) PS2204/EU2204", + "corequisite": "" + }, + { + "moduleCode": "PS4218", + "title": "European Foreign Policy", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EU4228", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4219", + "title": "Comparative Political Thought", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS3201B, PS3231", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "PS4220", + "title": "Rhetoric and Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS or 28 MCs in EL/EN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4221", + "title": "Contemporary Politics of Northeast Asia", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4224", + "title": "State and Society", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4225", + "title": "Contemporary Issues in Chinese Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4226", + "title": "Emerging Markets and Economic Governance", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: (1) Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track. (2) PS2237, PS3238 and PS3257.\n\nCohort 2020 onwards: (1) Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track. (2) PS2237, PS3238 and PS3257.", + "corequisite": "" + }, + { + "moduleCode": "PS4228", + "title": "Comparative Democratic Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4229", + "title": "The Politics of Knowledge", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4230", + "title": "Public Sector Reforms in China", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4231", + "title": "Social Theory and International Relations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS3880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/recognised modules or 28MCs in SC, with a minimum CAP of 3.20 or be on the honours track.\n \nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/recognised modules or 28 MCs in SC, with a minimum CAP of 3.20 or be on the honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4232", + "title": "Researching Singapore Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognised non-language modules or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS or 28MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4233", + "title": "Existentialist Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4234", + "title": "Identity Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4235", + "title": "War Termination and the Stability of Peace", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognized non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4236", + "title": "Environmental Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track, and PS3274.", + "corequisite": "" + }, + { + "moduleCode": "PS4237", + "title": "Capitalism and Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Completed 80 MCs, including 28 MCs in PS modules,\nwith a minimum CAP of 3.20 or be on the Honours track.\n(2) Completed either PS2258 Introduction to Political\nTheory or PS2204 Modern Western Political Thought.", + "corequisite": "" + }, + { + "moduleCode": "PS4238", + "title": "The Politics of Recognition and Identity", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4239", + "title": "Seminar in International Relations of Southeast Asia", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4311", + "title": "International Relations in Political Thought", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS4213 International Political Theory", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4312", + "title": "Seminar in European Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules or 28 MCs in EU / LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in EU / LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4313", + "title": "Seminar in Comparative Political Economy", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.onours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4314", + "title": "Data Analytics in Political Science", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track, and PS3257 Political Inquiry\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track, and PS3257 Political Inquiry", + "corequisite": "" + }, + { + "moduleCode": "PS4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PS4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs, including 60 MCs of PS major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs, including 44 MCs of PS major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "PS4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PS4401, PS4401S", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs including 60 MCs in PS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs including 44 MCs in PS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "PS4881", + "title": "Topics in Comparative Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4881B", + "title": "Topics in CP: Malaysian Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4881C", + "title": "Topics in CP: Labour Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4881D", + "title": "Topics in CP: Money and Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS, or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.nours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4881F", + "title": "Topics in CP: Political Islam – Middle East & Beyond", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in PS or 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4881G", + "title": "Topics in CP: Politics of the Korean Peninsula", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in PS or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4881H", + "title": "Topics in CP: Chinese Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track, and PS2248 Chinese Politics.", + "corequisite": "" + }, + { + "moduleCode": "PS4882", + "title": "Topics in International Relations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882A", + "title": "Topics in IR: Globalisation, Security and the State", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882B", + "title": "Topics in IR: 20th Century International Thought", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in PS or 28 MCs in EU/LA [French/German/Spanish]/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882D", + "title": "Topics in IR: Politics of Global Migration", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882E", + "title": "Topics in IR: Arms Control", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882F", + "title": "The Politics of International Trade", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882G", + "title": "Topics in IR: Politics of Intl Economic Relations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882H", + "title": "Topics in IR: Food Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4882I", + "title": "Topics in IR: International Society", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4883", + "title": "Topics in Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4883A", + "title": "Topics in PT: Orientalism and Femininity", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in PS or 28 MCs in HY or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in PS or 28 MCs in HY or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4884", + "title": "Topics in Public Administration", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS4884A", + "title": "Topics in PA: Applying Public Policy Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in PS, or 28 MCs in SC or 28 MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "PS5111", + "title": "Research Design in Political Science", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PS5101, PS6101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5111R", + "title": "Research Design in Political Science", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PS5101, PS6101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5201", + "title": "Seminar in Political Theory", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS5315/PS5315R", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5201R", + "title": "Seminar in Political Theory", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS5315/PS5315R", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5312", + "title": "Seminar in Comparative Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS5213, PS6301B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5312R", + "title": "Seminar in Comparative Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS5213, PS6301B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5313", + "title": "Seminar On State and Society", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5313R", + "title": "Seminar On State and Society", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5314", + "title": "Seminar in International Relations", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "IZ5102, PS5208, PS6208, PS6301A, PS6401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5314R", + "title": "Seminar in Int'l Relations", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "IZ5102, PS5208, PS6208, PS6301A, PS6401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5316", + "title": "Seminar in Public Administration", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5316R", + "title": "Seminar in Public Administration", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5318R", + "title": "The Politics of Authoritarian Rule", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5319", + "title": "The American Presidency", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5319R", + "title": "The American Presidency", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5321", + "title": "Seminar in Chinese Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS6316", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5321R", + "title": "Seminar in Chinese Politics", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS6316", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5408", + "title": "International Institutions", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS5404 and PS6404", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5408R", + "title": "International Institutions", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS5404 and PS6404 and PS5408", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5503", + "title": "Decentralization and Local Governance", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have basic proficiency in interpreting findings of quantitative and qualitative research. Basic economics knowledge is desirable.", + "corequisite": "" + }, + { + "moduleCode": "PS5503R", + "title": "Decentralization and Local Governance", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have basic proficiency in interpreting findings of quantitative and qualitative research. Basic economics knowledge is desirable.", + "corequisite": "" + }, + { + "moduleCode": "PS5504", + "title": "Development Theory, Policy and Institutions", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5505", + "title": "Public Administration Theory", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PS6504", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PS2240 Introduction to Public Administration or its equivalent, subject to the approval of the Instructor", + "corequisite": "" + }, + { + "moduleCode": "PS5506", + "title": "Globalization and Public Governance", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5506R", + "title": "Globalization and Public Governance", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5602", + "title": "Introduction to Quantitative Methods", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5602R", + "title": "Introduction to Quantitative Methods", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5603", + "title": "Introduction to Qualitative Methods", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS5603R", + "title": "Introduction to Qualitative Methods", + "moduleCredit": 5, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS6314", + "title": "Advanced Studies in Asian Politics", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS6402", + "title": "International Conflict and Security", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS6505", + "title": "Development Policy and Administration", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS6603", + "title": "Topics in Research Methods", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PS6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "PX2108", + "title": "Basic Human Pathology", + "moduleCredit": 4, + "department": "Pathology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AY1130, PY1131", + "corequisite": "" + }, + { + "moduleCode": "PX3108", + "title": "Pathology", + "moduleCredit": 4, + "department": "Pathology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AY1104 Anatomy (PR1906) and PY1106 Physiology II (PR1908)", + "corequisite": "" + }, + { + "moduleCode": "PY1131", + "title": "Human Anatomy & Physiology II", + "moduleCredit": 4, + "department": "Physiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "AY1130", + "corequisite": "" + }, + { + "moduleCode": "QF3101", + "title": "Investment Instruments: Theory and Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1104 or MA2104 or MA1505 or MA1507 or MA1511) and (MA2222 or QF2101 or MA3269)", + "corequisite": "" + }, + { + "moduleCode": "QF3201", + "title": "Basic Derivatives and Bonds", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "FNA2004", + "corequisite": "" + }, + { + "moduleCode": "QF3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Quantitative Finance as first major and have completed a minimum of 32 MCs in Quantitative Finance major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "QF3311", + "title": "Undergraduate Professional Internship", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Quantitative Finance as first major and have completed a minimum of 32 MCs in Quantitative Finance major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "QF3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Quantitative Finance as first major and have completed a minimum of 32 MCs in Quantitative Finance major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "QF3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared QF as first major and have completed a minimum of 32 MCs in QF major at the time of application and have completed QF3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "QF4102", + "title": "Financial Modelling and Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "QF3101", + "corequisite": "" + }, + { + "moduleCode": "QF4102A", + "title": "Financial Modelling and Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "QF3101 Investment Instruments: Theory and Computation", + "corequisite": "" + }, + { + "moduleCode": "QF4199", + "title": "Honours Project in Quantitative Finance", + "moduleCredit": 12, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Only for students majoring in Quantitative Finance and who matriculated from 2004/2005, subject to faculty and departmental requirements.", + "corequisite": "" + }, + { + "moduleCode": "QF5201", + "title": "Interest Rate Theory and Credit Risk", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5201A", + "title": "Interest Rate Theory and Credit Risk", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5202", + "title": "Structured Products", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5202A", + "title": "Structured Products", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5203", + "title": "Risk Management", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5203A", + "title": "Risk Management", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5204", + "title": "Numerical Methods in Quantitative Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5205", + "title": "Topics in Quantitative Finance I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5205A", + "title": "Topics in Quantitative Finance I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5206", + "title": "Topics in Quantitative Finance II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "QF5206A", + "title": "Topics in Quantitative Finance II", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5207", + "title": "Investment and Portfolio Selection", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5207A", + "title": "Investment and Portfolio Selection", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Department approval", + "corequisite": "" + }, + { + "moduleCode": "QF5208", + "title": "AI and FinTech", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5210", + "title": "Financial Time Series: Theory and Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(QF3101 and MA4269) or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5210A", + "title": "Financial Time Series: Theory and Computation", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Either\nQF3101 Investment Instruments: Theory and\nComputation\nand MA4269 Mathematical Finance II\nor Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "QF5299", + "title": "Quantitative Finance Project", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "QF5310", + "title": "Data Analysis and Machine Learning in Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "QF5311", + "title": "Advanced Methods in Risk Management", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "QF5312", + "title": "Statistical Models and Methods in Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "QF5313", + "title": "Advanced Computational & Programming Methods in Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "N.A.", + "corequisite": "N.A." + }, + { + "moduleCode": "QF5314", + "title": "Basic Mathematics in Finance", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "QF5315", + "title": "Selected Topics in FinTech", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Department approval.", + "corequisite": "" + }, + { + "moduleCode": "QF5401", + "title": "Graduate Internship in Quantitative Finance I", + "moduleCredit": 4, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "QF5402 Graduate Internship in Quantitative Finance II", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "QF5402", + "title": "Graduate Internship in Quantitative Finance II", + "moduleCredit": 8, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "QF5401 Graduate Internship in Quantitative Finance I", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "QT5101", + "title": "Quantum measurements and statistics", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "There are no precluded modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC2130 Quantum mechanics 1\nPC3130 Quantum mechanics 2", + "corequisite": "" + }, + { + "moduleCode": "QT5198", + "title": "Graduate Seminar in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "QT5201", + "title": "Special Topics in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT and in Physics. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with the lecturer before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201B", + "title": "Special Topics in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "QT5201C", + "title": "Special Topics in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT and in Physics who are admitted in the Summer school", + "corequisite": "" + }, + { + "moduleCode": "QT5201D", + "title": "Special Topics in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT and in Physics who are admitted to the Summer school.", + "corequisite": "" + }, + { + "moduleCode": "QT5201E", + "title": "Special Topics in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT and in Physics with a good background in quantum physics. Students from other departments and faculties are welcome, but it is\nadvisable that they discuss their background with the lecturer before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201F", + "title": "Special Topics in Quantum Information (Strong Light Matter Coupling)", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC 4130 Quantum Mechanics III\nPC4243 Atomic and Molecular Physics II or equivalent", + "corequisite": "" + }, + { + "moduleCode": "QT5201H", + "title": "Special Topics in Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT and in Physics. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with the lecturer before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201I", + "title": "Breakthrough techniques in atomic and many-body physics", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT and in Physics.Students from other departments and faculties are welcome, but it is advisable that they discuss their background with the lecturer before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201J", + "title": "Semidefinite Programming and Quantum Information", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT, and those in Computer Science, Mathematics, and in Physics. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with one of the lecturers before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201K", + "title": "Quantum Information Processing", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT, and those in Computer Science, Mathematics, and in Physics. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with one of the lecturers before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201L", + "title": "Quantum Information and Cryptography", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT, and those in\nComputer Science, Mathematics, and in Physics.\nStudents from other departments and faculties are\nwelcome, but it is advisable that they discuss their\nbackground with the lecturer before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201M", + "title": "Quantum State Estimation", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT, and those in\nPhysics, Mathematics, and Statistics. Students from other departments and faculties are welcome, but it is advisable\nthat they discuss their background with the lecturer before\nregistering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201N", + "title": "Convex optimization and quantum foundations", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students in CQT, and those in Computer Science, Mathematics, and in Physics. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with one of the lecturers before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201P", + "title": "Atoms and photon", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Quantum Mechanic, Statistical Mechanics", + "corequisite": "" + }, + { + "moduleCode": "QT5201Q", + "title": "Quantum Algorithms", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students in CQT, and those in Computer Science, Mathematics, and in Physics. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with one of the lecturers before registering.", + "corequisite": "" + }, + { + "moduleCode": "QT5201R", + "title": "Density Functionals for Many-Particle Systems", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is open to all students at CQT, and to those in Physics, Mathematics,\nand Chemistry. Students from other departments and faculties are welcome, but it is advisable that they discuss their background with the module co-ordinator before\nenroling.", + "corequisite": "" + }, + { + "moduleCode": "QT5201S", + "title": "Quantum Electronics", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Some knowledge of optics, quantum physics and/or atomic physics and basic\nexperimental techniques (like practical lab courses) would be helpful, or any\nexposure to practical measurement problems.", + "corequisite": "Possibly an experimental project in quantum technologies" + }, + { + "moduleCode": "QT5201T", + "title": "Bell nonlocality", + "moduleCredit": 4, + "department": "Center for Quantum Technologies", + "faculty": "NUS Graduate Sch for Int Science and Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD1111", + "title": "Occlusion", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD1210", + "title": "Pre-Clinical Operative Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD2000", + "title": "Dental Materials", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD2110", + "title": "Preclinical Fixed Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD2111", + "title": "Occlusion", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD2120", + "title": "Pre-Clinical Removable Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD2210", + "title": "Preclinical Operative Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD2220", + "title": "Pre-Clinical Endodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD3110", + "title": "Fixed Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD3120", + "title": "Preclinical Removable Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD3210", + "title": "Operative Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD3220", + "title": "Endodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD4100", + "title": "Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD4110", + "title": "Fixed Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD4111", + "title": "Occlusion", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD4120", + "title": "Removable Prosthodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD4210", + "title": "Operative Dentistry", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RD4220", + "title": "Endodontics", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1701", + "title": "Urban Land Use and Development", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE1102 Urban Land Use and Development", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1702", + "title": "Real Estate Data Analytics", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1703", + "title": "Principles of Law for Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "BSP1702 Legal Environment of Business, BSP1702X", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1704", + "title": "Principles of Real Estate Economics", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "EC1301 Principles of Economics\nEC1101E Introduction to Economic Analysis", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1705", + "title": "Real Estate Finance and Accounting", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "RE1101 Fundamentals of RE Finance\nStudents from Business School and those doing a Business Minor", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1706", + "title": "Design and Construction", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE1105 Design and Construction", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE1901", + "title": "Real Estate Wealth Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE1301 Real Estate Wealth Management", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE2701", + "title": "Urban Planning", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE2103 Urban Planning, AR2223 Theory of Urban Design and Planning", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE1701 Urban Land Use and Development", + "corequisite": "" + }, + { + "moduleCode": "RE2702", + "title": "Land Law", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE2105 Land Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE1703 Principles of Law for Real Estate", + "corequisite": "" + }, + { + "moduleCode": "RE2704", + "title": "Introduction to Real Estate Valuation", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE1104 Principles of Real Estate Valuation", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE2705", + "title": "Urban Economics", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "RE2102 Real Estate Economics\nEC3381 Urban Economics", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE2706", + "title": "Real Estate and Infrastructure Finance", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE2104 Real Estate Finance", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE2707", + "title": "Asset and Property Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE1103 Property and Facilities Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE1706 Design and Construction", + "corequisite": "" + }, + { + "moduleCode": "RE2708", + "title": "Computational Thinking and Programming for Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE2801", + "title": "Research Methodology in Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE3201 Research Methodology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE1702 Real Estate Data Analytics", + "corequisite": "" + }, + { + "moduleCode": "RE3000", + "title": "Work Experience Internship", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 3, + 4 + ], + "preclusion": "Full-time undergraduate students who have accumulated more than 12MCs for previous internship stints.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed at least 4 semester of study.", + "corequisite": "" + }, + { + "moduleCode": "RE3201", + "title": "Research Methodology", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "RE2801 Research Methodology in Real Estate", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2101 Real Estate Market Analysis, RE2104 Real Estate Finance", + "corequisite": "" + }, + { + "moduleCode": "RE3390", + "title": "Behavioral Studies In Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE3701", + "title": "Real Estate Investment Analysis", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE3104 Real Estate Investment Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE3702", + "title": "Property Tax and Statutory Valuation", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE2107 Property Tax and Statutory Valuation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2704 Introduction to Real Estate Valuation", + "corequisite": "" + }, + { + "moduleCode": "RE3703", + "title": "Advanced Real Estate Economics", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "RE2101 Real Estate Market Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2705 Urban Economics", + "corequisite": "" + }, + { + "moduleCode": "RE3704", + "title": "Real Estate Marketing", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "RE2106 Real Estate Marketing & Negotiation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE3802", + "title": "Real Estate Finance Law", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE3211 Real Estate Finance Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE1703 Principles of Law for Real Estate", + "corequisite": "" + }, + { + "moduleCode": "RE3803", + "title": "Strategic Asset Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2707 Asset and Property Management", + "corequisite": "" + }, + { + "moduleCode": "RE3804", + "title": "Real Estate Development Law", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE3221 Real Estate Development Law", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2702 Land Law", + "corequisite": "" + }, + { + "moduleCode": "RE3805", + "title": "Corporate Investment in Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE3212 Corporate Investment in Real Estate", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3701 Real Estate Investment Analysis", + "corequisite": "" + }, + { + "moduleCode": "RE3806", + "title": "Advanced Real Estate Valuation", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE3101 Advanced Real Estate Valuation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3702 Property Tax and Statutory Valuation", + "corequisite": "" + }, + { + "moduleCode": "RE3807", + "title": "Corporate Finance for Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3701 Real Estate Investment Analysis", + "corequisite": "" + }, + { + "moduleCode": "RE3901", + "title": "Advanced Urban Planning", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE3102 Advanced Topics in Urban Planning", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2701 Urban Planning", + "corequisite": "" + }, + { + "moduleCode": "RE3902", + "title": "Housing Markets and Policies", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE4301 Housing Markets and Housing Policies \nEC4387 Housing Economics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE3903", + "title": "GIS for Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE2301 GIS for Real Estate\nGE2215 Introduction to GIS & Remote Sensing\nGE2227 Cartography and Visualisation\nGE3216 Applications of GIS & Remote Sensing,\nGE3238 GIS Design and Practices", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE4180", + "title": "Real Estate Practice And Research", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3280; RE3281; RE3382; RE3383; RE3482; RE3483", + "corequisite": "" + }, + { + "moduleCode": "RE4204", + "title": "Advanced Real Estate Marketing", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2106 Real Estate Marketing and Negotiation", + "corequisite": "N.A." + }, + { + "moduleCode": "RE4210", + "title": "Real Estate Finance Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE4211 REIT MANAGEMENT, RE4212 REAL ESTATE SECURITIZATION.", + "corequisite": "" + }, + { + "moduleCode": "RE4701", + "title": "Real Estate Development", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE3103 Real Estate Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3703 Advanced Real Estate Economics\nRE3704 Real Estate Marketing", + "corequisite": "" + }, + { + "moduleCode": "RE4702", + "title": "Professional Practice and Ethics", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE3107 Real Estate Practice and Ethics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE1703 Principles of Law for Real Estate\nRE3707 Corporate Finance for Real Estate is recommended", + "corequisite": "" + }, + { + "moduleCode": "RE4711", + "title": "FYP Dissertation", + "moduleCredit": 8, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "RE4000 Dissertation\nRE4712 FYP Academic Exercise", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE4712", + "title": "FYP Academic Exercise", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "RE4001 Real Estate Case Study\nRE4711 FYP Dissertation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE4801", + "title": "Real Estate Internship Programme", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "RE4202 Real Estate Internship Programme", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must have completed at least 6 semester of study OR 100 MCs", + "corequisite": "" + }, + { + "moduleCode": "RE4802", + "title": "Topics in Real Estate (Summer Programme)", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE4203 Topics in Real Estate (Summer Programme)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed Year 2 Essential Modules", + "corequisite": "" + }, + { + "moduleCode": "RE4803", + "title": "REIT and Business Trust Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE4211 REIT Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3701 Real Estate Investment Analysis", + "corequisite": "" + }, + { + "moduleCode": "RE4804", + "title": "Real Estate Securitisation", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE4212 Real Estate Securitisation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3701 Real Estate Investment Analysis", + "corequisite": "" + }, + { + "moduleCode": "RE4805", + "title": "International Real Estate Development and Investment", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE3105 Regional Real Estate Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE4701 Real Estate Development", + "corequisite": "" + }, + { + "moduleCode": "RE4806", + "title": "Real Estate Finance Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE4210 Real Estate Finance Seminar", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3701 Real Estate Investment Analysis", + "corequisite": "" + }, + { + "moduleCode": "RE4807", + "title": "Real Estate Risk Analysis and Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE4213 Real Estate Risk Analysis and Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE3701 Real Estate Investment Analysis", + "corequisite": "" + }, + { + "moduleCode": "RE4808", + "title": "Urban Challenges and Policies", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "RE4222 Public Policy and Real Estate Markets", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE2701 Urban Planning\nRE3703 Advanced Real Estate Economics", + "corequisite": "" + }, + { + "moduleCode": "RE5000", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5001", + "title": "Real Estate Development", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5003", + "title": "Real Estate Investment", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5004", + "title": "Real Estate Economics", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5005", + "title": "Real Estate Finance", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5006", + "title": "Portfolio and Asset Management", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5009", + "title": "Commercial Real Estate Appraisal", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5011", + "title": "International Field Study", + "moduleCredit": 8, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5013", + "title": "Urban Policy & Real Estate Markets", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5014", + "title": "Real Estate Investment Trusts & Property Funds", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5015", + "title": "Geographic Information Systems (GIS) and Cartography", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5016", + "title": "Real Estate Securitisation", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5017", + "title": "Real Estate Case Study", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE5018", + "title": "Statutory Valuation", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "RE5009 Commercial Real Estate Appraisal", + "corequisite": "" + }, + { + "moduleCode": "RE5770", + "title": "Graduate Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE6004", + "title": "Research Methodology in Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE6005", + "title": "Real Estate Economics Research Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE6006", + "title": "Real Estate Finance Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE6007", + "title": "Research Topics in Real Estate", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RE6008", + "title": "Urban Planning and Development Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PhD students with urban planning background", + "corequisite": "" + }, + { + "moduleCode": "RE6770", + "title": "Phd Seminar", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RS4000", + "title": "Urop", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RY2000", + "title": "Oral And Dental Radiology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RY3000", + "title": "Dental Radiology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "RY4000", + "title": "Dental Radiology", + "moduleCredit": 1, + "department": "FoD Dean's Office", + "faculty": "Dentistry", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4101", + "title": "Software Analysis and Design", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4102", + "title": "Enterprise Solutions Design and Development", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4103", + "title": "Internet Application Development", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4104", + "title": "Digital Product Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4105", + "title": "Web Application Development", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4106", + "title": "AD Project", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4107", + "title": "Industrial Attachment Project", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4108", + "title": "Mobile Application Development", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SA4109", + "title": "Advanced Web Development", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Have passed the following two compulsory GDipSA modules:\n�� SA4102: Programming and .NET Development.\n�� SA4105: Java Programming.", + "corequisite": "" + }, + { + "moduleCode": "SA4109A", + "title": "Advanced Web Development", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Have passed the following two compulsory GDipSA modules:\n- SA4102: Programming and .NET Development.\n- SA4105: Java Programming.", + "corequisite": "" + }, + { + "moduleCode": "SC1101E", + "title": "Making Sense of Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2101", + "title": "Methods of Social Research", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2202", + "title": "Sociology of Work", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2204", + "title": "Social Inequalities : Who Gets Ahead?", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2205", + "title": "Sociology of Family", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2206", + "title": "Culture & Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2207", + "title": "Peoples & Cultures of Southeast Asia", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2208", + "title": "Baby or No Baby: Population Dynamics at a Crossroads", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2209", + "title": "Money, Business and Social Networks", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2210", + "title": "Sociology of Popular Culture", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2211", + "title": "Medical Sociology", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2212", + "title": "Sociology of Deviance", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2213", + "title": "Childhood and Youth", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2214", + "title": "Media and Culture", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "IF2214", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2215", + "title": "The Sociology of Food", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2216", + "title": "Emotions and Social Life", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2217", + "title": "Sociology of Tourism", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2218", + "title": "Anthropology and the Human Condition", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2220", + "title": "Gender Studies", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2221", + "title": "Humans and Natures", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2222", + "title": "Sports and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2224", + "title": "Visual Anthropology Field-School", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2225", + "title": "The Social Life of Art", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2226", + "title": "Sociology of Mental Health", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SC1101E Making Sense of Society", + "corequisite": "" + }, + { + "moduleCode": "SC2227", + "title": "Sociology of Religion", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC2880A", + "title": "Singapore: The Social Experiment", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3101", + "title": "Social Thought & Social Theory", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EU3224", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3202", + "title": "From Modernization to Globalization", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3203", + "title": "Race and Ethnic Relations", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3204", + "title": "Sociology of Education", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3205", + "title": "Sociology of Power:Who Gets to Rule?", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3206", + "title": "Urban Sociology", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3207", + "title": "Cultures of Kinship", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3208", + "title": "Religion in Society & Culture", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3209", + "title": "Data Analysis in Social Research", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SC2101 or GL2104", + "corequisite": "" + }, + { + "moduleCode": "SC3211", + "title": "Science, Technology & Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3212", + "title": "Southeast Asia in a Globalizing World", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3213", + "title": "Visual Ethnography: Theory and Practice", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "IF3213", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3214", + "title": "Sociology of Life Course and Ageing", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3215", + "title": "Law and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3216", + "title": "Self and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3219", + "title": "Sexuality in Comparative Perspective", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3220", + "title": "Ritual, Performance and Symbolic Action", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3221", + "title": "Qualitative Inquiry", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3222", + "title": "Social Transformations in Modern China", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3223", + "title": "Visual Culture: Seeing and Representing", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3225", + "title": "Social Capital", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3226", + "title": "Markets and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3227", + "title": "Modernity and Social Change", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3228", + "title": "Senses and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3229", + "title": "Comparing Deviance: Perverts & Scandalous Improprieties", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3230", + "title": "Volunteer Workforce", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC3550", + "title": "Sociology Internship", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 3, + 4 + ], + "preclusion": "Any other XX3550 internship modules\n(Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have:\n- Completed at least 60 MCs in total (about 3 semesters), including 24 MCs in Sociology (6 modules), and declared Sociology as their Major\n(including as Second Major).\n- Completed SC1101E Making Sense of Society and SC2101 Social Research Methods.", + "corequisite": "" + }, + { + "moduleCode": "SC3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SC4101", + "title": "Practising Anthropology and Sociology", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4201", + "title": "Contemporary Social Theory", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS or 28 MCs in GL/GL recognised non‐language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4202", + "title": "Reading Ethnographies", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC or 28 MCs in MS, with a minimum CAP of 3.20 or be on the\nHonours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4203", + "title": "Sociology of Organizations", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS, or 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4204", + "title": "Social Policy & Social Planning", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4205", + "title": "Sociology of Language & Communication", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4206", + "title": "Urban Anthropology", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 M4Cs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4209", + "title": "Interpretive Sociology", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4210", + "title": "Sociology of Migration", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4211", + "title": "Tourism and Culture: A Global Perspective", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4212", + "title": "Social Memory", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4213", + "title": "Qualitative Data Collection", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2014:\nCompleted 80 MCs, including 28 MCs in SC or in EU/LA (French/German)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2015 onwards:\nCompleted 80 MCs, including 28 MCs in SC or in EU/LA (French/German/Spanish)/recognised modules, with a\nminimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4217", + "title": "Social Movements and Collective Behaviour", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS, or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4218", + "title": "Religions, Secularity, Post-Secularity", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC, or 28 MCs in PS, or 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, or 28 MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4219", + "title": "Social Origins and Consequences of Financial Crises", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4220", + "title": "Aging and Health", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4221", + "title": "Comparative Analysis of Human Rights", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SC4208A Comparative Analysis of Human Rights", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4222", + "title": "Body and Society", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC4208B Body and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4223", + "title": "Health and Social Behaviour", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC4214A Health and Social Behaviour", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4224", + "title": "Welfare and Social Justice", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC4215D Welfare and Social Justice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4225", + "title": "The Sociology of Cities and Development Planning in Asia", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4226", + "title": "Cultural Production: Power, Voice, Policies", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4227", + "title": "Gender, Sex and Power", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4228", + "title": "Making Sense of Violence", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28 MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SC4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs including 60 MCs of SC major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of SC major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "SC4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SC4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SC with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SC4880", + "title": "Selected Topics in Socio'gy & Anthrop'gy", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SC4208 Selected Topics in Sociology and Anthropology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4880A", + "title": "Communication and Social Structure", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "SC4880B", + "title": "Advanced Sociological Analysis of Singapore Society", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4881", + "title": "Selected Topics in Health & Society", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC4214 Selected Topics in Health and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28 MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4882", + "title": "Issues in State and Society", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC4215 Issues in State and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4882A", + "title": "Perspectives on State & Society", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC4215A Perspectives on State and Society", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in SC or 28MCs in PS or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in SC or 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4882B", + "title": "Citizenship, Nation and Globalization", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC4215B Citizenship, Nation and Globalization", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS, or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, or 28MCs in PS with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4882C", + "title": "State, Governance and Governmentality", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC4208E State, Governance and Governmentality", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC or 28MCs in GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC4883", + "title": "Selected Topics in Law and Justice", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SC4216 Selected Topics in Law and Justice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SC, or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SC5101", + "title": "Graduate Research Methods", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC6101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5101R", + "title": "Graduate Research Methods", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5102", + "title": "Quantitative Data Analysis", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SC6101 (obsolete)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5102R", + "title": "Quantitative Data Analysis", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SC6101 (obsolete)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5103", + "title": "Qualitative Data Analysis", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5103R", + "title": "Qualitative Data Analysis", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5205", + "title": "Social Policy Analysis", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5209", + "title": "Sociology of Everyday Life", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5209R", + "title": "Sociology of Everyday Life", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5215", + "title": "The Practice of Visual Ethnography", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5215R", + "title": "The Practice of Visual Ethnography", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5216", + "title": "Crime, Criminal Behaviour and Criminal Justice", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC5211A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5218", + "title": "Population Studies", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5218R", + "title": "Population Studies", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SC5211C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5219", + "title": "Tourism: Culture, Society and the Environment", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC5211D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5219R", + "title": "Tourism: Culture, Society and the Environment", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC5211D", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5223", + "title": "Social Networks", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC6229", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5223R", + "title": "Social Networks", + "moduleCredit": 5, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC6229", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC5770", + "title": "Graduate Research Seminar for Masters students", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SC6770", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6102", + "title": "Sociological Theory", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6212", + "title": "Global Transformations", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC6211A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6213", + "title": "Families in Transition", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6214", + "title": "Gender, Culture and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6215", + "title": "Religion in the Contemporary World", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6216", + "title": "The Anthropological Perspective", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6217", + "title": "Identities & Nation State", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6220", + "title": "Conflict/Power in Comparative Perspective", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6222", + "title": "Topics in Transnationalism", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6223", + "title": "The Government of Life in Contemporary Capitalism", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6224", + "title": "Producing Ethnography", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6225", + "title": "Kinship, Relatedness and Personhood", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6226", + "title": "Asia as an Area of Ethnographic Study", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6227", + "title": "Economy and Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6228", + "title": "Social Stratification and Mobility", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6230", + "title": "Institutional Varieties and Asian Capitalisms", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Sociology Masters students are not allowed to read SC6660 to fulfill their coursework requirement. If they wish to read SC6660 in addition to the required coursework component, permission must first be sought from the Department’s Graduate Chair.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SC6780", + "title": "Professional Writing in Sociology and Anthropology", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SC5101 Graduate Research Methods\nSC5102 Quantitative Data Analysis\nSC5103 Qualitative Data Analysis\nSC6102 Sociological Theory and Social Reality\nSC6770 Graduate Research Seminar\nCompleted and passed Comprehensive Exams", + "corequisite": "" + }, + { + "moduleCode": "SC6880", + "title": "Topics in Social Organization", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SC5880 (to preclude current students who have done the module)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SDM5001", + "title": "Systems Architecture", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SDM5002", + "title": "Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SDM5003", + "title": "Knowledge Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SDM5004", + "title": "Systems Engineering Project Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5208 Systems Approach to Project Management\nDTS5720 Systems Engineering Project Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SDM5010", + "title": "Model-Based Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "DTS5725 Model-Based Systems Engineering", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SDM5990", + "title": "Sdm Research Project", + "moduleCredit": 8, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "MT5910 LaunchPad: Experiential Entrepreneurship & MT5900 MOT Research Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE1101E", + "title": "Southeast Asia: A Changing Region", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEK1008, GEM1008K, SSA1202, SS1203SE", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2210", + "title": "Popular Culture in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SE4215", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2211", + "title": "Southeast Asian Social History", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2212", + "title": "Cities and Urban Life in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2213", + "title": "Politics in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SE2281 or SSA2207 or SS2207SE, SC2207", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2214", + "title": "Arts of Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2217", + "title": "War and Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2218", + "title": "Changing Economic Landscape of SE Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2218T", + "title": "Changing Economic Landscape of Southeast Asia", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2219", + "title": "Culture and Power in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2221", + "title": "Old and New Music in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2222", + "title": "Southeast Asia in Context", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2223", + "title": "Doing Research In Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2224", + "title": "Unmasked! An Introduction to Traditional Dance in SEA", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2225", + "title": "Forbidden Pleasures: Vice in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2226", + "title": "Moro Peoples of the Philippines", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2227", + "title": "Southeast Asian Gardens: History and Symbolism", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2229", + "title": "Southeast Asia as a Field of Study", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SE1101E: Southeast Asia: A Changing Region", + "corequisite": "" + }, + { + "moduleCode": "SE2660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 12 MC in Southeast Asian Studies; and have declared Southeast Asian Studies as their Major. read or waived from: LAB 1201 & LAB 2201; LAT 1201 & LAT2201; or LAV1201 and LAV2201", + "corequisite": "" + }, + { + "moduleCode": "SE2880", + "title": "Topics in Southeast Asian Studies", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE2880A", + "title": "Southeast Asia's Cultural Mosaic", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3210", + "title": "Studies in Southeast Asian Arts", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3211", + "title": "Religion, Society & Politics in SE Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3214", + "title": "Heritage and Heritagescapes in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3216", + "title": "Migration, Diaspora and Refugees in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3218", + "title": "Industrialising Singapore and SE Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SE2215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3218T", + "title": "Industrialising Singapore and SE Asia", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "SE2215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3219", + "title": "Country Studies: Island Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3220", + "title": "Country Studies: Mainland Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3221", + "title": "Traditional Music in a SE Asian Country", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3222", + "title": "Gender in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3224", + "title": "Thai Drawing and Painting", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "As the emphasis of the class is on practical approaches to art as a way of appreciating and understanding Southeast Asian Studies, students should ideally have genuine interests in drawing, painting, and the creative arts.", + "corequisite": "" + }, + { + "moduleCode": "SE3226", + "title": "Hard at work: the changing face of labour in SEA", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3227", + "title": "Maritime History and Culture of Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3228", + "title": "The Universe Unraveling: Narratives of War in Indochina", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3230", + "title": "Seen and Unseen: Explorations in Balinese Theatre", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3231", + "title": "Colonial Southeast Asia Through European Literature", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3232", + "title": "Death and Dying in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3233", + "title": "Martial Arts in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SE3880B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3234", + "title": "Sea, Islands, Vessels: A Voyage of Exploration", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3235", + "title": "Southeast Asia Laboratory: Power and Markets", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3550", + "title": "Southeast Asian Studies Internship", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "Any other XX3550 module. [Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in Southeast Asian Studies; and have declared Southeast Asian Studies as their Major.", + "corequisite": "" + }, + { + "moduleCode": "SE3660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in Southeast Asian Studies; and have declared Southeast Asian Studies as their Major. read or waived from: LAB 1201 & LAB 2201; LAT 1201 & LAT2201; or LAV1201 and LAV2201", + "corequisite": "" + }, + { + "moduleCode": "SE3711", + "title": "Department exchange module", + "moduleCredit": 1, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3712", + "title": "Department exchange module", + "moduleCredit": 1, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3880", + "title": "Topics in Southeast Asian Studies", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE3880B", + "title": "Martial Arts in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE4101", + "title": "Southeast Asia Studies: Theory and Practice", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "All NON SE major and NON GL major students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80MCs, including 28MCs in SE, or 28MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80MCs, including 28MCs in SE with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4201", + "title": "Southeast Asian Languages as Research Tools", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(1) Level 6 module in a Southeast Asian language (or an equivalent level of skills in any Southeast Asian language, including those not taught at NUS).\n(2) Permission of lecturer.\n(3) Completed 80MCs, including 28MCs in SE, with a minimum CAP of 3.20 or be on Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4210", + "title": "Ancient Kingdoms of Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4212", + "title": "Elites of Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4217", + "title": "Southeast Asia in the Global Economy", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SE or 28MCs in SC or 28MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4218", + "title": "Majorities and Minorities in SE Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in MS or 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE or 28 MCs in MS or 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4220", + "title": "Special Studies on Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4221", + "title": "Southeast Asian Postcolonialism", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SE or 28 MCs in MS or 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4223", + "title": "Knowledge, Power and Colonialism in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in MS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE or 28 MCs in MS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4225", + "title": "The Cold War in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4226", + "title": "Doing Ethnography in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in SC or 28 MCs in GL/GL recognised non language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4227", + "title": "Nationalism in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in PS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE or 28 MCs in PS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4228", + "title": "Contentious Politics in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SE or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SE, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SE4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SE4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs including 60 MCs of SE major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of SE major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "SE4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SE4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in SE, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SE5151", + "title": "Approaches to the Study of Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5201", + "title": "Supervised Research Project", + "moduleCredit": 8, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SE5660 Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "i. Approval of Departmental Graduate Coursework Selection Committee.\nii. Must achieve “B” grade in SE5151.\niii. Must have completed at least 4 modules with minimum CAP of 4.0.", + "corequisite": "" + }, + { + "moduleCode": "SE5211", + "title": "Socio Economic History of Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5211R", + "title": "Socio Economic History of Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5213", + "title": "Revolt and Revolution in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5213R", + "title": "Revolt and Revolution in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5219", + "title": "Technopolitics in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5219R", + "title": "Technopolitics in Southeast As", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5221", + "title": "Landscapes of Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "GE5214", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5221R", + "title": "Landscapes of Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5222", + "title": "The Arts in Contemporary Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5222R", + "title": "The Arts in Contemporary Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5224", + "title": "Religion and Society in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5224R", + "title": "Religion and Society in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5226", + "title": "Race and Ethnicity in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5226R", + "title": "Race and Ethnicity in Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5229", + "title": "Anthropological Approaches to Se Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5229R", + "title": "Anthropological Approaches to SE Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5232", + "title": "Southeast Asia and Regionalism", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "IZ5211", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5232R", + "title": "Southeast Asia and Regionalism", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5233", + "title": "Economies of Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "IZ5103, SE6233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5233R", + "title": "Economies of Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "IZ5103, SE6233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5235", + "title": "Infrastructures and Mobilities in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5241", + "title": "Country Studies: Mainland Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SE5241R", + "title": "Country Studies: Mainland Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SE5242", + "title": "Country Studies: Thailand", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5242R", + "title": "Country Studies: Thailand", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5243", + "title": "Country Studies: Indonesia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5243R", + "title": "Country Studies: Indonesia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5244", + "title": "Country Studies: The Philippines", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5244R", + "title": "Country Studies: The Philippines", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5245", + "title": "Country Studies: Malaysia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5245R", + "title": "Country Studies: Malaysia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5246", + "title": "Country Studies: Myanmar", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of\n3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5246R", + "title": "Country Studies: Myanmar", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For SE Honours students with a minimum CAP of 3.20", + "corequisite": "" + }, + { + "moduleCode": "SE5247", + "title": "Country Studies: Vietnam", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5247R", + "title": "Country Studies: Vietnam", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5263", + "title": "Cultural Resource Management in Se Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5263R", + "title": "Cultural Resource Management in Se Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5264", + "title": "Archaeology and Art of Ancient Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5264R", + "title": "Archaeology and Art of Ancient Southeast Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5294", + "title": "The Politics of Environment in Se Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GE5215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5294R", + "title": "The Politics of Environment in Se Asia", + "moduleCredit": 5, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SE5201 Supervised Research Project", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE5880", + "title": "Topics in Southeast Asian Studies", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6214", + "title": "Studies in Southeast Asian Politics", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6219", + "title": "Varieties of the State in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6220", + "title": "Approaches to Southeast Asian Arts", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6221", + "title": "Gender and Sexuality in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6227", + "title": "Postcolonialism in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6233", + "title": "Economic Development Issues in Se Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6251", + "title": "Special Readings in a SE Asian Language", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SE6660 Independent Study Module", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be enroled in the MA or Ph.D Research programmes.", + "corequisite": "" + }, + { + "moduleCode": "SE6265", + "title": "Studies on Early Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SE6880", + "title": "Topics in Southeast Asian Studies", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG3001", + "title": "C++ Programming", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG3002", + "title": "Windows Programming", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG3003", + "title": "Basic Java Programming", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG3004", + "title": "Human Computer Interface", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG3202", + "title": "Windows Programming", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG3204", + "title": "Human Computer Interface", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4001", + "title": "Basic Software Engineering Discipline", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4002", + "title": "Mobile Wireless Application Development", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4003", + "title": "Advanced Java Programming", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4004", + "title": "Developing Web Services", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4005", + "title": "Information Systems Security", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4006", + "title": "Enterprise Integration", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4007", + "title": "Mobile Wireless Solution Design", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4008", + "title": "Grid Computing", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4009", + "title": "Embedded Systems Development", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4010", + "title": "Enterprise .NET I", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is expected to have knowledge in the following topics: \n- Basic Software Engineering\n- Object Oriented Analysis and Design\n- Working knowledge of .NET and C# language", + "corequisite": "" + }, + { + "moduleCode": "SG4011", + "title": "Cloud Computing", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is expected to have some Working Knowledge on Enterprise Applications", + "corequisite": "" + }, + { + "moduleCode": "SG4101", + "title": "Basic Software Engineering Discipline", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4202", + "title": "Mobile Wireless Application Development", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4204", + "title": "Developing Web Services", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4205", + "title": "Information Systems Security", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4206", + "title": "Enterprise Integration", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4207", + "title": "Mobile Wireless Solution Design", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4208", + "title": "Grid Computing", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4209", + "title": "Embedded Systems Development", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG4210", + "title": "Enterprise .NET", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is expected to have knowledge in the following topics:\n- Basic Software Engineering\n- Object Oriented Analysis and Design\n- Working knowledge of .NET and C# language", + "corequisite": "" + }, + { + "moduleCode": "SG4405", + "title": "Software Analysis and Design Project", + "moduleCredit": 2, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5001", + "title": "Oo Analysis & Design", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5002", + "title": "Software Project Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5003", + "title": "Software Quality Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5004", + "title": "Software Project Financial Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5005", + "title": "Software Metrics & Process Improvement", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5006", + "title": "Software Reliability", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5007", + "title": "Managing IT Outsourcing & Subcontracting", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5008", + "title": "Object Oriented Design Patterns", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5009", + "title": "Enterprise Java", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5010", + "title": "Strategic It Planning", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5011", + "title": "Business Process Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5012", + "title": "Architecting Reliable Systems", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5013", + "title": "Software Entrepreneurship", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5014", + "title": "Software Requirements Engineering", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5015", + "title": "Enterprise Architecture", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5016", + "title": "Business Transformation Through Technology Innovation", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5017", + "title": "Software Product Line Engineering", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5018", + "title": "Advanced Topics in Software Process Improvement", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5019", + "title": "It Law", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5020", + "title": "Research On Advanced It Topics 1", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5021", + "title": "Research on Advanced IT Topics II", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5022", + "title": "IT Service Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5023", + "title": "Enterprise Resource Planning 1", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5024", + "title": "Enterprise Resource Planning II", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5025", + "title": "Architecting Software Solutions", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is\nexpected to have knowledge in the following topics:\n- Java (preferred) or .NET Programming\n- Object Oriented Design", + "corequisite": "" + }, + { + "moduleCode": "SG5026", + "title": "Enterprise .NET II", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is expected to have knowledge in the following topics:\n- Basic Software Engineering\n- Object Oriented Analysis and Design\n- Posses good design & development knowledge\nin .NET equivalent to the coverage of SG5026", + "corequisite": "" + }, + { + "moduleCode": "SG5027", + "title": "Open Source for the Enterprise", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5028", + "title": "Service Innovation", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5101", + "title": "Software Analysis & Design", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SG4101 BASIC SOFTWARE ENGINEERING DISCIPLINE", + "corequisite": "" + }, + { + "moduleCode": "SG5102", + "title": "Software Project Management", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5103", + "title": "Software Quality Management", + "moduleCredit": 8, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5116", + "title": "Software Engineering Project", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5117", + "title": "Software Engineering Overseas Practicum", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "Students that select SG5116 Software Engineering Project cannot also select the Software Engineering Overseas Practicum and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Before commencing the Software Engineering Overseas Practicum, the students must successfully complete the four MTech SE core courses:\n\nSG4101 Basic Software Engineering Discipline\nSG5101 Object Oriented Analysis and Design\nSG5102 Software Project Management\nSG5103 Software Quality Management\n\nIn addition, they must demonstrate in the electives they have taken and/or in their work experience that they have the technical background for the project being offered by NOC.", + "corequisite": "" + }, + { + "moduleCode": "SG5118", + "title": "Individual Software Practicum", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students that select SG5116 Software Engineering Project cannot also select the Individual Software Practicum and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Before commencing the Individual Software Practicum, the students must successfully complete the four MTech SE core courses:\nSG4101 Basic Software Engineering Discipline\nSG5101 Object Oriented Analysis and Design\nSG5102 Software Project Management\nSG5103 Software Quality Management\nIn addition, they must demonstrate in the electives they have taken and/or in their work experience that they have the technical background for the available projects.", + "corequisite": "" + }, + { + "moduleCode": "SG5204", + "title": "Software Project Financial Management", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5205", + "title": "Software Metrics & Process Improvement", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5206", + "title": "Software Reliability", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5207", + "title": "Managing IT Outsourcing & Subcontracting", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5208", + "title": "Object Oriented Design Patterns", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5209", + "title": "Enterprise Java", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5210", + "title": "Strategic It Planning", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5211", + "title": "Business Process Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5214", + "title": "Software Requirements Engineering", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5218", + "title": "Enterprise IT Governance", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5219", + "title": "It Law", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5220", + "title": "Independent Work 1", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5221", + "title": "Independent Work 2", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5222", + "title": "IT Service Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5223", + "title": "Enterprise Resource Planning 1", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5224", + "title": "Enterprise Resrce Planning II", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5225", + "title": "Architecting Software Solutions", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is\nexpected to have knowledge in the following topics:\n- Java (preferred) or .NET Programming\n- Object Oriented Design", + "corequisite": "" + }, + { + "moduleCode": "SG5226", + "title": "Enterprise .NET II", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is expected to have knowledge in the following topics:\n- Basic Software Engineering\n- Object Oriented Analysis and Design\n- Posses good design & development knowledge\nin .NET equivalent to the coverage of SG5026", + "corequisite": "" + }, + { + "moduleCode": "SG5227", + "title": "Open Source for the Enterprise", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5228", + "title": "Digital Innovation and Design", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5229", + "title": "Software Maintenance and Evolution", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The course pre-requisite would be a professional competency in a contemporary programming language such as C#, Java or C++.", + "corequisite": "" + }, + { + "moduleCode": "SG5230", + "title": "Software Prototyping", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The course pre-requisite would be a professional competency in a contemporary programming language such as C#, Java or C++.", + "corequisite": "" + }, + { + "moduleCode": "SG5231", + "title": "Agile Software Project Management", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5232", + "title": "Advanced Software Estimation", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5233", + "title": "Internet of Things Technology", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no hard prerequisites in terms of existing courses, but students are expected to have knowledge of the Python programming language. Online resources will be provided to enable students to acquire this knowledge through self-study prior to the start of the course.", + "corequisite": "" + }, + { + "moduleCode": "SG5234", + "title": "Digital User Experience Design", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no hard prerequisites in terms of existing courses, but students are expected to have basic knowledge of software development techniques and the software development lifecycle.", + "corequisite": "" + }, + { + "moduleCode": "SG5235", + "title": "Scaling Agile", + "moduleCredit": 4, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must know basics of Agile and must have read scrum primer or guide.", + "corequisite": "" + }, + { + "moduleCode": "SG5236", + "title": "Machine Learning for Software Engineers", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Programming skills.", + "corequisite": "" + }, + { + "moduleCode": "SG5237", + "title": "Secure Software Life Cycle", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "There are no hard prerequisites in terms of existing courses, but students are expected to have basic knowledge of software development techniques and the software development lifecycle.", + "corequisite": "" + }, + { + "moduleCode": "SG5238", + "title": "Architecting IOT Solutions", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5239", + "title": "Cloud Native Solution Design", + "moduleCredit": 3, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "SG4211: Cloud Computing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "While there is no module pre-requisites, the student is\nexpected to have some Working Knowledge on Enterprise\nApplications", + "corequisite": "" + }, + { + "moduleCode": "SG5404", + "title": "Software Architecture and Design Assessment", + "moduleCredit": 2, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SG5405", + "title": "Software Architecture and Design Project", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5002", + "title": "Fundamentals in Industrial Safety", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "1 or 2 years of basic chemistry; some working experience", + "corequisite": "" + }, + { + "moduleCode": "SH5002C", + "title": "Fundamentals in Industrial Safety", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "1 or 2 years of basic chemistry; some working experience", + "corequisite": "" + }, + { + "moduleCode": "SH5003", + "title": "Fundamentals in Environmental Protection", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "Students who have obtained degrees or post-graduate diplomas in Environmental\nEngineering, Environmental Sciences or their equivalent", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5003C", + "title": "Fundamentals in Environmental Protection", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "Students who have obtained degrees or post-graduate diplomas in Environmental\nEngineering, Environmental Sciences or their equivalent", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5101", + "title": "Industrial Toxicology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5101C", + "title": "Industrial Toxicology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5102", + "title": "Occupational Ergonomics", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5102C", + "title": "Occupational Ergonomics", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5104", + "title": "Occupational Health", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5104C", + "title": "Occupational Health", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5105", + "title": "Noise and Other Physical Hazards", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5105C", + "title": "Noise and Other Physical Hazards", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5106", + "title": "Radiation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5106C", + "title": "Radiation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5107", + "title": "Industrial Ventilation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5107C", + "title": "Industrial Ventilation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5108", + "title": "Chemical Hazard Management", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "SH5004 Fundamentals in Industrial Hygiene", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5108C", + "title": "Chemical Hazard Management", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "SH5004 Fundamentals in Industrial Hygiene", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5109", + "title": "Biostatistics and Epidemiology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5109C", + "title": "Biostatistics and Epidemiology", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5110", + "title": "Chemical Hazard Evaluation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "SH5004: Fundamentals in Industrial Hygiene", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5110C", + "title": "Chemical Hazard Evaluation", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "SH5004: Fundamentals in Industrial Hygiene", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5201", + "title": "Hazard Identification & Evaluation Techniques", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5201C", + "title": "Hazard Identification and Evaluation Techniques", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5202", + "title": "Quantified Risk Analysis", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "SH5000 and SH5201", + "corequisite": "" + }, + { + "moduleCode": "SH5202C", + "title": "Quantified Risk Analysis", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "SH5000 and SH5201", + "corequisite": "" + }, + { + "moduleCode": "SH5203", + "title": "Emergency Planning", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5203C", + "title": "Emergency Planning", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5204", + "title": "Safety Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5204C", + "title": "Safety Engineering", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5205", + "title": "Incident Management", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "SH5203 – Emergency Planning", + "corequisite": "" + }, + { + "moduleCode": "SH5205C", + "title": "Incident Management", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "SH5203 – Emergency Planning", + "corequisite": "" + }, + { + "moduleCode": "SH5206", + "title": "Human Factors in Process Safety", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5206C", + "title": "Human Factors in Process Safety", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5401", + "title": "Safety, Health, Environment & Quality Management System", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "ESE5602 Environmental Management System", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5401C", + "title": "Safety, Health, Environment & Quality Management System", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "ESE5602 Environmental Management System", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5402", + "title": "Advanced Safety, Health & Environment Management", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5402C", + "title": "Advanced Safety, Health & Environment Management", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5403", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "SH5404" + }, + { + "moduleCode": "SH5403C", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "SH5404" + }, + { + "moduleCode": "SH5404", + "title": "Safety Health and Environmental Project", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "SH5403" + }, + { + "moduleCode": "SH5404C", + "title": "Safety Health and Environmental Project", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "SH5403" + }, + { + "moduleCode": "SH5666", + "title": "Industrial Safety, Health and Environment Practices", + "moduleCredit": 8, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5880", + "title": "Topics in Industrial Hygiene", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5880C", + "title": "Topics in Industrial Hygiene", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5881", + "title": "Topics in Process Safety", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5881C", + "title": "Topics in Process Safety", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5882", + "title": "Topics in Environment Protection", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SH5882C", + "title": "Topics in Environment Protection", + "moduleCredit": 4, + "department": "Chemical and Biomolecular Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5101", + "title": "Normal Functioning 1 (Biosciences Foundation)", + "moduleCredit": 6, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5102", + "title": "Normal Functioning 2 (Linguistics Foundation)", + "moduleCredit": 6, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5103", + "title": "Professional Practice 1", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5104", + "title": "Research Design and Statistics", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5105", + "title": "Impaired Functioning - Children 1", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5106", + "title": "Impaired Functioning - Adults 1", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5107", + "title": "Impaired Functioning - Children 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5108", + "title": "Impaired Functioning - Adults 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5109", + "title": "Professional Practice 2", + "moduleCredit": 6, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5110", + "title": "Intervention and Management - Children 1", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5111", + "title": "Intervention and Management - Adults 1", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5112", + "title": "Research Project 1", + "moduleCredit": 6, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5113", + "title": "Professional Practice 3", + "moduleCredit": 6, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SLP 5101- SLP 5112 or equivalent with permission of the\nProgramme Director", + "corequisite": "" + }, + { + "moduleCode": "SLP5114", + "title": "Intervention and Management - Children 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5115", + "title": "Intervention and Management - Adults 2", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5116", + "title": "Research Project 2", + "moduleCredit": 8, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5117", + "title": "Professional Practice Issues", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SLP5118", + "title": "Professional Practice 4", + "moduleCredit": 6, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SLP 5101- SLP 5117 or equivalent with permission of the\nProgramme Director", + "corequisite": "" + }, + { + "moduleCode": "SN1101E", + "title": "Discover South Asia: People, Culture, Development", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2213", + "title": "Governance and Politics in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "PS2247 South Asia: Politics and Foreign Policy", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2232", + "title": "South Asia:Poverty, Inequality, Power", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SN2212", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2233", + "title": "Globalizing India: The Politics of Economic Change", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2234", + "title": "Gender and Society in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2261", + "title": "The Emergence of Contemporary South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2271", + "title": "Religion and Society in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2273", + "title": "Introduction to Indian Thought", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH2204, GEK2027", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2274", + "title": "South Asian Cultures: An Introduction", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2275", + "title": "Contemporary Tamil Literature", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SN2291", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass in 'AO' Level Tamil", + "corequisite": "" + }, + { + "moduleCode": "SN2276", + "title": "Islam: Society and Culture in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2277", + "title": "Indian Communities in Southeast Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2278", + "title": "Introduction to Sikhism", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2279", + "title": "The Making of Modern India, 1856-1947", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2280", + "title": "Marriage, Sex, Love in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2281", + "title": "Nations at Play: History of Sport in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2282", + "title": "Music in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2283", + "title": "China-India Interactions: Changing Perspectives", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN2284", + "title": "Making Sense of Regions in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3223", + "title": "International Relations of South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3231", + "title": "South Asia and the World Economy", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3232", + "title": "South Asia : Development, Issues, Debates", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3261", + "title": "Exile, Indenture, IT: Global South Asians", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3262", + "title": "The Struggle for India, 1920-1964", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "HY2228, HY3236, SN2261", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3272", + "title": "Issues in Indian Philosophy", + "moduleCredit": 4, + "department": "Philosophy", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "PH3204", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3274", + "title": "South Asian Cinema", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3275", + "title": "Tamil Culture and Society", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Pass in O/A level Tamil or O Level Higher Tamil In Singapore or Pass in \nSecondary/Higher Secondary Tamil in India", + "corequisite": "" + }, + { + "moduleCode": "SN3276", + "title": "Introduction to Classical Indian Texts", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3277", + "title": "South Asia:Field Studies", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed 8 MC of SN modules", + "corequisite": "" + }, + { + "moduleCode": "SN3278", + "title": "Rivers of India: Divinity & Sacred Space", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3279", + "title": "Language, Culture and Identity in India", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3281", + "title": "The Story of Indian Business", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3282", + "title": "Violence and Visual Cultures in South Asia", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN3550", + "title": "Internship", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "Any other XX3550 internship modules (Note: Students who change majors may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should have completed a minimum of 24 MCs in SN coded and SN recognised modules; and have declared South Asian Studies as their Major", + "corequisite": "" + }, + { + "moduleCode": "SN3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SN3880", + "title": "Topics in South Asian Studies", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SN1101E South Asia: People, Culture, Development", + "corequisite": "" + }, + { + "moduleCode": "SN3880A", + "title": "Art of India", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN4101", + "title": "Approaches to the Study of South Asia", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN, or 28 MCs in SC or 28 MCs in GL or GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4102", + "title": "Critical Debates in South Asian Studies", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4221", + "title": "Regional Conflict & Cooperation in Asia", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4231", + "title": "Peasants and Capitalism in Asia", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4232", + "title": "South Asian Interregional Tourism", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track", + "corequisite": "" + }, + { + "moduleCode": "SN4233", + "title": "Social, Political and Economic Change in India", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4234", + "title": "Mapping Social Movements in India", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4261", + "title": "South and Southeast Asia: Early Contacts", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN or 28 MCs in SC, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4262", + "title": "Hindutva Nationalism", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN or 28 MCs in SC or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN or 28 MCs in SCs, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4263", + "title": "Themes in Contemporary Indian History", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in SN, or 28 MCs in SC, or 28MCs of GL/GL recognised non-language modules with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in SN, or 28 MCs in SC with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4275", + "title": "South Asian Languages and Literatures", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4276", + "title": "Epic Traditions in South- and SE-Asia", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SN4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before:\nCompleted 110 MCs including 60 MCs of SN major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of SN major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "SN4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SN4401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in SN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in SN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SN4880", + "title": "Topics in South Asian Studies", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SN, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SN5102", + "title": "South Asian Research Methodologies I", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN5103", + "title": "Contemporary India: Contexts & Narratives", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN5103R", + "title": "Contemporary India: Contexts & Narratives", + "moduleCredit": 5, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN5880", + "title": "Topics in South Asian Studies I", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN6003", + "title": "South Asian Studies: Selected Topics I", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN6004", + "title": "South Asian Studies : Selected Topics Ii", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN6102", + "title": "South Asian Research Methodologies Ii", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN6770", + "title": "South Asia Graduate Research Seminar", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SN6880", + "title": "Topics in South Asian Studies Ii", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SN6003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP1230", + "title": "NUS H3 Science Research Programme", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Currently taking relevant H2 subjects.", + "corequisite": "" + }, + { + "moduleCode": "SP1541", + "title": "Exploring Science Communication through Popular Science", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "Those who have taken SP1203, ENV1202, SP2171, ES1541, UTown and USP writing modules, ES1601 are precluded from taking SP1541.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This module is meant for students from Cohort 2015 and after. If students are required to take ES1000 (Foundation Academic English) and ES1103 (English for Academic Purposes), they must complete them before taking SP1541.", + "corequisite": "" + }, + { + "moduleCode": "SP1630", + "title": "Science Research Programme Advanced Placement", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP2171", + "title": "Discovering Science", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP2173", + "title": "Atoms to Molecules", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP2174", + "title": "The Cell", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP2173 Atoms to Molecules", + "corequisite": "" + }, + { + "moduleCode": "SP2201", + "title": "Agri-Science in Japan and Singapore", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP2251", + "title": "Science at the Nanoscale", + "moduleCredit": 4, + "department": "Chemistry", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "N.A.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "PC1144\nor PC1432/PC1432X or CM1101 or CM1131\nor PC1321/GEK1509", + "corequisite": "" + }, + { + "moduleCode": "SP3172", + "title": "Integrated Science Project", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP3173", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP3174", + "title": "Project Laboratory", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SP3175", + "title": "The Earth", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP2174 The Cell", + "corequisite": "" + }, + { + "moduleCode": "SP3176", + "title": "The Universe", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP3175 The Earth", + "corequisite": "" + }, + { + "moduleCode": "SP3202", + "title": "Evidence in Forensic Science", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEK1542", + "corequisite": "" + }, + { + "moduleCode": "SP3203", + "title": "Aquatic Ecology Research", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM2251 Ecology and Environment or GE2229 Water and Environment", + "corequisite": "" + }, + { + "moduleCode": "SP3277", + "title": "Nano: from Research Bench to Industrial Applications", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SP2171 (Discovering Science) and SP2173 (Atoms to Molecules), or SP2251 (Science at the Nanoscale)", + "corequisite": "" + }, + { + "moduleCode": "SP4261", + "title": "Articulating Probability and Statistics in Court", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1306 Forensic Science or with department approval", + "corequisite": "" + }, + { + "moduleCode": "SP4262", + "title": "Forensic Human Identification", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "LSM1306 Forensic Science or with department approval", + "corequisite": "" + }, + { + "moduleCode": "SP4263", + "title": "Forensic Toxicology and Poisons", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "LSM4211 Toxicology", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1306 Forensic Science or with department approval", + "corequisite": "" + }, + { + "moduleCode": "SP4264", + "title": "Criminalistics: Evidence and Proof", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "LSM1306 Forensic Science or with department approval", + "corequisite": "" + }, + { + "moduleCode": "SP4265", + "title": "Criminalistics: Forgery Exposé with Forensic Science", + "moduleCredit": 2, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1306 Forensic Science or with department approval", + "corequisite": "" + }, + { + "moduleCode": "SP4266", + "title": "Forensic Entomology", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1306 Forensic Science or with department approval", + "corequisite": "" + }, + { + "moduleCode": "SPH1871", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1872", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1873", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1874", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1875", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1876", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1877", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1878", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH1879", + "title": "SEP exchange module", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2001", + "title": "Fundamental Public Health Methods", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2002", + "title": "Public Health and Epidemiology", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "SPH2101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2003", + "title": "Systems and Policies to improve Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "SPH2103", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2004", + "title": "Lifestyle, Behaviour and Public Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "SPH2102", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2005", + "title": "Health, Society and the Social Determinants", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "SPH2107", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2105A", + "title": "Introduction to Global Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2202", + "title": "Public Health Nutrition", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH2104", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2401", + "title": "Introduction to Global Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "SPH2105", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2402", + "title": "Health in the Later Years", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "SPH2106", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH2801", + "title": "Health of the Poor in Asia", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 4 + ], + "preclusion": "SPH2201", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH3001", + "title": "Public Health Practice", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 3, + 4 + ], + "preclusion": "SPH3201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed at least 8 MCs of essential modules and at least 8 MCs of approved electives for the Minor in Public Health.", + "corequisite": "" + }, + { + "moduleCode": "SPH3101", + "title": "Biostatistics for Public Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "i.\tBN2102 Bioengineering Data Analysis\nii.\tDAO2702 Programming for Business Analytics\niii.\tEC2303 Foundations for Econometrics\niv.\tPL2131 Research and Statistical Methods I\nv.\tSC3209 Data Analysis in Social Research\nvi.\tST1131 Introduction to Statistics\nvii.\tST1232 Statistics for Life Sciences\nviii.\tST2334 Probability and Statistics", + "corequisite": "" + }, + { + "moduleCode": "SPH3106", + "title": "Data Analysis for Pathogen Genomics", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH2001 Fundamental Public Health Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH3202", + "title": "Infectious disease epidemiology and public health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH3104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH2101 or SPH2002", + "corequisite": "" + }, + { + "moduleCode": "SPH3203", + "title": "Prevention and Control of Non-Communicable Diseases", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "SPH3105", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH2101 or SPH2002", + "corequisite": "" + }, + { + "moduleCode": "SPH3401", + "title": "Designing Public Health Programmes", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "SPH3109", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1. GEK1900 Public Health in Action; AND \n2. SPH2101 / SPH2002 Public Health and Epidemiology", + "corequisite": "" + }, + { + "moduleCode": "SPH3403", + "title": "Public Health Economics", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "SPH3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH3404", + "title": "Physical Activity For Better Population Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH3501", + "title": "Introduction to Public Health Communication", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5001", + "title": "Foundations of Public Health", + "moduleCredit": 0, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5002", + "title": "Public Health Research Methods", + "moduleCredit": 8, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "CO5102 Principles of Epidemiology and CO5103 Quantitative Epidemiologic Methods", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5003", + "title": "Health Behaviour and Communication", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "CO5203 Lifestyle and Behavior in Health and Disease,\nSPH6006 Advanced Health Behaviour & Communication", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5004", + "title": "Introduction to Health Systems and Policies", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5104 Health Policy & Systems,\nSPH6007 Health Systems and Policy Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5005", + "title": "Practicum", + "moduleCredit": 8, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "CO5210 Practicum", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods; OR\nCO5102 Principles of Epidemiology and \nCO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5006", + "title": "STATA Primer for Public Health", + "moduleCredit": 0, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5007", + "title": "Implementing Public Health Programmes and Policies", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "SPH5004 Introduction to Health Systems and Policies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5101", + "title": "Advanced Quantitative Methods I", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5218 Advanced Quantitative Methods I,\nSPH6002 Advanced Quantitative Methods II", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1) A minimum grade ‘B-‘ obtained in CO5103 Quantitative Epidemiologic Methods OR SPH5002 Public Health Research Methods, and \n\n2) SPH5006 STATA Primer for Public Health or working knowledge of STATA", + "corequisite": "" + }, + { + "moduleCode": "SPH5102", + "title": "Design, Conduct and Analysis of Clinical Trials", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5220 Design, Conduct and Analysis of Clinical Trials", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods; OR\nCO5102 Principles of Epidemiology and \nCO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5103", + "title": "Collection, Management & Analysis of Quantitative Data", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5232 Collection, Management & Analysis of Quantitative Data", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5006 STATA Primer for Public Health or working knowledge of STATA", + "corequisite": "" + }, + { + "moduleCode": "SPH5104", + "title": "Healthcare Analytics", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5237 Healthcare Analytics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods; OR\nCO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5201", + "title": "Control of Communicable Diseases", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5201 Control of Communicable Diseases", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5202", + "title": "Control of Non-Communicable Diseases", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5209 Control of Non-Communicable Diseases", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5203", + "title": "Advanced Epidemiology I", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5215 Advanced Epidemiology I,\nSPH6001 Advanced Epidemiology II", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods; OR\nCO5102 Principles of Epidemiology and \nCO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5204", + "title": "Nutrition and Health - Fundamentals and Applications", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "CO5229 Nutrition and Health", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5205", + "title": "Urban Outbreak Management", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5206", + "title": "Urban Field Epidemiology", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "CO5202 Environmental and Occupational Health\nSPH5306 Environmental Health", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5301", + "title": "Occupational Health Practice", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5304 Occupational Health Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5302", + "title": "Occupational Toxicology and Industrial Hygiene", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5305 Industrial Hygiene\nCO5306 Public Health Toxicology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5303", + "title": "Workplace Assessment", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5317 Workplace Assessment", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CO5305 Industrial Hygiene & CO5306 Public Health Toxicology\nor\nSPH5302 Occupational Toxicology and Industrial Hygiene", + "corequisite": "" + }, + { + "moduleCode": "SPH5304", + "title": "Occupational Ergonomics", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5312 Occupational Ergonomics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5305", + "title": "Clinical Occupational Medicine", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5307 Clinical Occupational Medicine", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Medical graduates with relevant clinical experience.", + "corequisite": "" + }, + { + "moduleCode": "SPH5306", + "title": "Environmental Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5202 Environmental and Occupational Health", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5307", + "title": "Principles of Workplace Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5311", + "title": "Workplace Safety and Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5312", + "title": "Assessment and Control of Occupational Hazards", + "moduleCredit": 8, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH5302 Occupational Toxicology and Industrial Hygiene", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5311 Workplace Safety and Health", + "corequisite": "" + }, + { + "moduleCode": "SPH5313", + "title": "Principles of Occupational Medicine", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH5305 Clinical Occupational Medicine", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5311 Workplace Safety and Health\nSPH5312 Assessment and Control of Occupational Hazards", + "corequisite": "" + }, + { + "moduleCode": "SPH5314", + "title": "Enterprise Occupational Health Practice", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5311 Workplace Safety and Health; and\nSPH5312 Assessment and Control of Occupational Hazards", + "corequisite": "" + }, + { + "moduleCode": "SPH5401", + "title": "Health Economics and Financing", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5204 Health Economics and Financing", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5402", + "title": "Management of Healthcare Organisations", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5205 Management of Healthcare Organisations", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5403", + "title": "Medical & Humanitarian Emergencies", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 3 + ], + "preclusion": "CO5206 Medical & Humanitarian Emergencies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5404", + "title": "Measuring and Managing Quality of Care", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5208 Measuring and Managing Quality of Care", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5405", + "title": "Introduction to Health Services Research", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5214 Introduction to Health Services Research", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods; OR\nCO5102 Principles of Epidemiology and \nCO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5406", + "title": "Contemporary Global Health Issues", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "CO5221 Contemporary Global Health Issues", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5407", + "title": "Programme Evaluation", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5222 Programme Evaluation", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods OR CO5102 Principles of\nEpidemiology and CO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH5408", + "title": "Public Health and Ageing", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "CO5230 Public Health and Aging", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5409", + "title": "Qualitative Methods in Public Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5233 Qualitative Methods in Public Health", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5410", + "title": "Developing health proposals using DME skills & tools", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5234 Developing health proposals using DME skills & tools", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5007 Implementing Public Health Programmes and Policies", + "corequisite": "" + }, + { + "moduleCode": "SPH5411", + "title": "Information Technology in Healthcare", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5235 Information Technology in Healthcare", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5412", + "title": "Economic Methods in Health Technology Assessment", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "CO5236 Economic Methods in Health Technology Assessment", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5413", + "title": "Women’s, Children’s and Adolescents’ Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5414", + "title": "Informatics for Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5415", + "title": "Healthcare Operations & Performance", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5416", + "title": "Introduction to Integrated Care", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5420", + "title": "Evidence Synthesis for HTA", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5421", + "title": "Modelling Techniques in HTA", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5422", + "title": "Applied Health Econometrics for HTA", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5006 STATA Primer for Public Health", + "corequisite": "" + }, + { + "moduleCode": "SPH5423", + "title": "Simulation for Health Technology Assessment", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5501", + "title": "Public Health Communication", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2, + 3 + ], + "preclusion": "CO5226 Public Health Communication", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must pass the MPH core module CO5203\nLifestyle and Behaviour in Health and Disease or\nSPH5003 Health Behaviour and Communication", + "corequisite": "" + }, + { + "moduleCode": "SPH5801", + "title": "Field Practice", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5231 Field Practice", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed at least 20 MCs of modules within the MPH programme.", + "corequisite": "" + }, + { + "moduleCode": "SPH5880A", + "title": "Special Topics in Epidemiology and Disease Control", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880A Special Topics in Epidemiology and Disease Control", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5880B", + "title": "Special Topics in Quantitative Methods", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880B Special Topics in Quantitative Methods", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5880C", + "title": "Special Topics in Environmental/Occupational Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880C Special Topics in Environmental / Occupational Health", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5880D", + "title": "Special Topics in Health Policy and Systems", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880D Special Topics in Health Policy and Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5880E", + "title": "Special Topics in Health Services Research", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880E Special Topics in Health Services Research", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5880F", + "title": "Special Topics in Health Promotion", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880F Special Topics in Health Promotion", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5880G", + "title": "Special Topics in Global Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "CO5880G Special Topics in Global Health", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890A", + "title": "Independent Study in Epidemiology and Disease Control", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223A EPIDEMIOLOGY AND DISEASE CONTROL", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890B", + "title": "Independent Study in Quantitative Methods", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223B QUANTITATIVE METHODS", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890C", + "title": "Independent Study in Environmental / Occupational Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223C ENVIRONMENTAL / OCCUPATIONAL HEALTH", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890D", + "title": "Independent Study in Health Policy and Systems", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223D Health Policy and Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890E", + "title": "Independent Study in Health Services Research", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223E Health Services Research", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890F", + "title": "Independent Study in Health Promotion", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223F Health Promotion", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH5890G", + "title": "Independent Study in Global Health Programs: Planning and Evaluation", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "CO5223G GLOBAL HEALTH PROGRAMS: PLANNING AND EVALUATION", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6001", + "title": "Advanced Epidemiology II", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH5203 Advanced Epidemiology I", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods; OR\nCO5102 Principles of Epidemiology and CO5103 Quantitative Epidemiologic Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH6002", + "title": "Advanced Quantitative Methods II", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH5101 Advanced Quantitative Methods I\nCO5218 Advanced Quantitative Methods I", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1) A minimum grade ‘B-‘ obtained in CO5103 Quantitative Epidemiologic Methods OR SPH5002 Public Health Research Methods, and \n\n2) SPH5006 STATA Primer for Public Health or working knowledge of STATA", + "corequisite": "" + }, + { + "moduleCode": "SPH6003", + "title": "Nutritional Epidemiology", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "1.\tSPH5002 Public Health Research Methods OR CO5102 Principles of Epidemiology/ Basic Epidemiology and CO5103 Quantitative Epidemiologic Methods /Basic Biostatistics, and\n2.\tSPH5006 STATA Primer for Public Health or working knowledge of STATA", + "corequisite": "" + }, + { + "moduleCode": "SPH6004", + "title": "Advanced Statistical Learning", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6005", + "title": "Applied Health Economics", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CO5204 Health Economics and Financing or equivalent & CO5103 Quantitative Epidemiologic Methods or equivalent", + "corequisite": "" + }, + { + "moduleCode": "SPH6006", + "title": "Advanced Health Behaviour and Communication", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1 + ], + "preclusion": "SPH5003 Health Behaviour and Communication", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6007", + "title": "Health Systems and Policy Analysis", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 2 + ], + "preclusion": "SPH5004 Introduction to Health Systems and Policies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5007 Implementing Public Health Programmes and Policies", + "corequisite": "" + }, + { + "moduleCode": "SPH6201", + "title": "Independent Study", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201A", + "title": "Independent Study (Epidemiology and Disease Control)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201B", + "title": "Independent Study (Biostatistics)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201C", + "title": "Independent Study (Environmental / Occupational Health)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201D", + "title": "Independent Study (Health Policy and Systems)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201E", + "title": "Independent Study (Health Services Research)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201F", + "title": "Independent Study (Health Promotion)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6201G", + "title": "Independent Study (Global Health)", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6401", + "title": "Advanced approaches in physical activity research", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SPH5002 Public Health Research Methods", + "corequisite": "" + }, + { + "moduleCode": "SPH6770", + "title": "Graduate Research Seminar in Public Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6880", + "title": "Special Topics in Public Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SPH6880A", + "title": "Special Topics in Epidemiology and Disease Control", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SPH6880B", + "title": "Special Topics in Biostatistics", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SPH6880C", + "title": "Special Topics in Environmental / Occupational Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SPH6880D", + "title": "Special Topics in Health Policy and Systems", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SPH6880E", + "title": "Special Topics in Health Services Research", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SPH6880F", + "title": "Special Topics in Health Promotion", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SPH6880G", + "title": "Special Topics in Global Health", + "moduleCredit": 4, + "department": "SSH School of Public Health Dean's Office", + "faculty": "SSH School of Public Health", + "semester": [], + "preclusion": "To be defined accordingly", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "To be defined accordingly", + "corequisite": "To be defined accordingly" + }, + { + "moduleCode": "SSA1201", + "title": "Singapore Society", + "moduleCredit": 4, + "department": "Sociology", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1028", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA1202", + "title": "Southeast Asia: A Changing Region", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1008, GEM1008K, SE1101E, SS1203SE, Students majoring in SE are precluded from taking this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA1203", + "title": "Singapore, Asia and American Power", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1018", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA1206", + "title": "Representing Singapore", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1023", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA1207", + "title": "Singapore Literature in English: Selected Texts", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SSA1207FC, GES1025", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA1208", + "title": "Everyday Life of Chinese Singaporeans: Past & Present (taught in English)", + "moduleCredit": 4, + "department": "Chinese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA1209", + "title": "The Singlish Controversy", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK1063\nGES1022", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2202", + "title": "Changing Landscapes of Singapore", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GEK2001, GES1003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2203", + "title": "Singapore’s Business History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2239, GES1009", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2204", + "title": "Nation-Building in Singapore", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2229, GES1010", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2205", + "title": "Singapore and Japan: Historical and Contemporary Relationships", + "moduleCredit": 4, + "department": "Japanese Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "JS2224 and GES1015", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2206", + "title": "Islam and Contemporary Malay Society", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1014, MS2205", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2207", + "title": "Politics in Southeast Asia", + "moduleCredit": 4, + "department": "Southeast Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SE2213, SE2281, SS2207SE. Students majoring in SE are precluded from taking this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2208", + "title": "Singapore's Military History", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2242. Students majoring in HY are precluded from taking this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2209", + "title": "Government and Politics of Singapore", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEK2003, GEM2003K, PS1102, PS2101B, PS2101, PS2249, SS2209PS. Students majoring in PS are\nprecluded from taking this module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2211", + "title": "The Evolution of a Global City-State", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1011", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2214", + "title": "Singapore and India: Emerging Relations", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1006", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2215", + "title": "The Biophysical Environment of Singapore", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1004", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2219", + "title": "South Asia in Singapore", + "moduleCredit": 4, + "department": "South Asian Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "GES1007", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2220", + "title": "Global Economic Dimensions of Singapore", + "moduleCredit": 4, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC2373, PP5215, GES1002, SSA2220T, GES1002T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2220T", + "title": "Global Economic Dimensions Of Singapore", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "EC2202, EC2373, GES1002T, SSA2220, GES1002", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2221", + "title": "Popular Culture in Singapore", + "moduleCredit": 4, + "department": "History", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "HY2254, GES1012", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA2222", + "title": "Public Administration in Singapore", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS2244", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA3201", + "title": "Singapore English-Language Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "TS3235. Students who are majoring in TS, or intend to major in TS should not take\nSSA3201.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA3203", + "title": "The Malays of Singapore", + "moduleCredit": 4, + "department": "Malay Studies", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "MS3209. Students majoring in MS are precluded from taking this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSA3205", + "title": "Singapore's Foreign Policy", + "moduleCredit": 4, + "department": "Political Science", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PS3249. Students majoring in PS are precluded from taking this module.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSB1204", + "title": "Singapore Employment Law", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "GES1000, SSB1204T, GES1000T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSB1204T", + "title": "Singapore Employment Law", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "SSB1204, GES1000, GES1000T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSB2212", + "title": "Singapore Legal System: Implications For Business", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "BSP1004, GEK1009, students from Faculty of Law", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSB2216", + "title": "Employee Management In Singapore", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GES1001, SSB2216T, GES1001T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSB2216T", + "title": "Employee Management In Singapore", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "MNO2302, SSB2216, GES1001, GES1001T", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSB2217", + "title": "Taxation and the Singapore Miracle", + "moduleCredit": 4, + "department": "Accounting", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "GES1027", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSD1203", + "title": "Real Estate Development & Investment Law", + "moduleCredit": 4, + "department": "Real Estate", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "• BSP1004, Legal Environment for Business \n• BSP1004X, Legal Environment for Business \n•• SSB2212 Singapore Legal System: Implications for Business \n•• Not for Real Estate and Project and Facility Management students. \n•• Also all Law undergraduate students, as well as students who have taken Law modules from the Faculty of Law, are not allowed to read this module.\n•• GES1024", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSD2210", + "title": "Managing Singapore's Built Environment", + "moduleCredit": 4, + "department": "Building", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "RE1102, GES1019", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSD2213", + "title": "Singapore Urban History & Architecture", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "GES1013", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSE1201", + "title": "Building a Dynamic Singapore - Role of Engineers", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "GES1017", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSS1207", + "title": "Natural Heritage of Singapore", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GES1021", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSU2002", + "title": "Identities in Asia", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "This module is currently open only to students of the College of Alice & Peter Tan, University Town", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSU2005", + "title": "Environment and Civil Society in Singapore", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "This module is currently open only to students of the College of Alice & Peter Tan, University Town", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSU2007", + "title": "Citizenship in a Changing World", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SSY2223", + "title": "Western Music within a Singaporean Context", + "moduleCredit": 4, + "department": "YSTCM Dean's Office", + "faculty": "YST Conservatory of Music", + "semester": [ + 2 + ], + "preclusion": "GES1020", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST1131", + "title": "Introduction to Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "ST1131A, ST1232, ST2334, CE2407, CN3421, EC2231, EC2303, PR2103, DSC2008. Engineering students except ISE students.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘AO’ Level or H1 Pass in Mathematics or its equivalent or MA1301 or MA1301FC or MA1301X", + "corequisite": "" + }, + { + "moduleCode": "ST1232", + "title": "Statistics for Life Sciences", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST1131, ST1131A, ST2334, CE2407, CN3421, EC2231, EC2303, PR2103, DSC2008.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GCE ‘AO’ Level or H1 Pass in Mathematics or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "ST2131", + "title": "Probability", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA2216, ST2334, CE2407", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102 or MA1102R or MA1312 or MA1507 or MA1505 or MA1505C or MA1521", + "corequisite": "" + }, + { + "moduleCode": "ST2132", + "title": "Mathematical Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2216 or ST2131 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST2137", + "title": "Computer Aided Data Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1131 or ST1131A or ST1232 or ST2334 or ST2131 or MA2216.", + "corequisite": "" + }, + { + "moduleCode": "ST2288", + "title": "Basic UROPS in Statistics and Applied Probability I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1131 or ST1232; AND Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "ST2289", + "title": "Basic UROPS in Statistics and Applied Probability II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "ST1131 or ST1232; and Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "ST2334", + "title": "Probability and Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST1131, ST1131A, ST1232, ST2131, MA2216, CE2407, EC2231, EC2303, PR2103, DSC2008. ME students taking or having taken ME4273. All ISE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA1102R or MA1312 or MA1505 or MA1507 or MA1521", + "corequisite": "" + }, + { + "moduleCode": "ST2335", + "title": "Statistical Methods", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "ST3131", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1131 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST2339", + "title": "Business Analytics - Data & Decisions", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST3131", + "title": "Regression Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST2335, EC3303", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 or MA2216 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3232", + "title": "Design & Analysis of Experiments", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3233", + "title": "Applied Time Series Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3234", + "title": "Actuarial Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 or ST2334 or MA2216", + "corequisite": "" + }, + { + "moduleCode": "ST3235", + "title": "Statistical Quality Control", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "All ISE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 or MA2216 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3236", + "title": "Stochastic Processes I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA3238. All ISE students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA1101 or MA1101R or MA1311 or MA1508) and (ST2131 or MA2216)", + "corequisite": "" + }, + { + "moduleCode": "ST3239", + "title": "Survey Methodology", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA2216 or ST2131 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3240", + "title": "Multivariate Statistical Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "ST3241", + "title": "Categorical Data Analysis I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "ST3242", + "title": "Introduction to Survival Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132", + "corequisite": "" + }, + { + "moduleCode": "ST3243", + "title": "Statistical Methods in Epidemiology", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(ST2132) and (ST2131 or MA2216)", + "corequisite": "" + }, + { + "moduleCode": "ST3244", + "title": "Demographic Methods", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST1131", + "corequisite": "" + }, + { + "moduleCode": "ST3245", + "title": "Statistics in Molecular Biology", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3246", + "title": "Statistical Models for Actuarial Science", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132", + "corequisite": "" + }, + { + "moduleCode": "ST3247", + "title": "Simulation", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "{ST2131 or ST2334 or MA2216} and {CS1010 or CS1010E or CS1010S or\nCS1010FC or IT1006}", + "corequisite": "" + }, + { + "moduleCode": "ST3248", + "title": "Statistical Learning I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "ST4240, YSC4216", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132 or ST2334", + "corequisite": "" + }, + { + "moduleCode": "ST3288", + "title": "Advanced UROPS in Statistics & Applied Probability I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST3289", + "title": "Advanced UROPS in Statistics & Applied Probability II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Statistics as first major and have completed a minimum of 32 MCs in Statistics major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "ST3311", + "title": "Undergraduate Professional Internship", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Statistics as first major and have completed a minimum of 32 MCs in Statistics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "ST3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Statistics as first major and have completed a minimum of 32 MCs in Statistics major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "ST3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared ST as first major and have completed a minimum of 32 MCs in ST major at the time of application and have completed ST3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "ST4199", + "title": "Honours Project in Statistics", + "moduleCredit": 12, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "For Cohort 2011 and before- At least one major at B.Sc./B.Appl.Sc. level; and minimum overall CAP of 3.50 on completion of 100 MCs or more. For Cohort 2012 and after- At least one major at B.Sc./B.Appl.Sc. level; and minimum overall CAP of 3.20 on completion of 100 MCs or more.", + "corequisite": "" + }, + { + "moduleCode": "ST4231", + "title": "Computer Intensive Statistical Methods", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132", + "corequisite": "" + }, + { + "moduleCode": "ST4232", + "title": "Nonparametric Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132", + "corequisite": "" + }, + { + "moduleCode": "ST4233", + "title": "Linear Models", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "ST4234", + "title": "Bayesian Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132", + "corequisite": "" + }, + { + "moduleCode": "ST4237", + "title": "Probability Theory I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(MA2216 or ST2131)", + "corequisite": "" + }, + { + "moduleCode": "ST4238", + "title": "Stochastic Processes II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "MA4251", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MA3238 or ST3236", + "corequisite": "" + }, + { + "moduleCode": "ST4240", + "title": "Data Mining", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "ST4241", + "title": "Design & Analysis of Clinical Trials", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3242 or ST2132", + "corequisite": "" + }, + { + "moduleCode": "ST4242", + "title": "Analysis of Longitudinal Data", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "ST4243", + "title": "Statistical Methods for DNA Microarray Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 and ST3240", + "corequisite": "" + }, + { + "moduleCode": "ST4245", + "title": "Statistical Methods for Finance", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131", + "corequisite": "" + }, + { + "moduleCode": "ST4248", + "title": "Statistical Learning II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ST4240, YSC4216", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131 and ST3248", + "corequisite": "" + }, + { + "moduleCode": "ST4261", + "title": "Special Topics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST4262", + "title": "Special Topics II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST4299", + "title": "Applied Project in Statistics", + "moduleCredit": 12, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "ST4199", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for the Major in Statistics", + "corequisite": "" + }, + { + "moduleCode": "ST5198", + "title": "Graduate Seminar Module", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5199", + "title": "Coursework Track Ii Project", + "moduleCredit": 16, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST5201", + "title": "Statistical Foundations of Data Science", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5202", + "title": "Applied Regression Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "ST5318", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5203", + "title": "Design of Experiments for Product Design and Process Improvements", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "ST5318", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5204", + "title": "Experimental Design 2", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5205", + "title": "Probability Theory 2", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "MA5260", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5206", + "title": "Generalized Linear Models", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST4233 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5207", + "title": "Nonparametric Regression", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5208", + "title": "Analytics for Quality Control and Productivity Improvements", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3235 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5209", + "title": "Analysis of Time Series Data", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3233 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5210", + "title": "Multivariate Data Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3240 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5211", + "title": "Sampling from Finite Populations", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5212", + "title": "Survival Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2132 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5213", + "title": "Categorical Data Analysis Ii", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5214", + "title": "Advanced Probability Theory", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "MA5259", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 or Departmental approval (compulsory to MSc by Research and AMP students)", + "corequisite": "" + }, + { + "moduleCode": "ST5215", + "title": "Advanced Statistical Theory", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 and ST2132 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5217", + "title": "Statistical Methods For Genetic Analysis", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "LSM1102 and ST2132 and ST3236, or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5218", + "title": "Advanced Statistical Methods in Finance", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST4245 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5219", + "title": "Bayesian hierarchical modelling", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "ST5220", + "title": "Statistical Consulting", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST3131 Regression Analysis and ST3232 Experimental Design or Department Approval", + "corequisite": "" + }, + { + "moduleCode": "ST5221", + "title": "Probability and Stochastic Processes", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "ST5214 Advanced Probability Theory\nMA5259 Probability Theory 1", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 or its equivalent", + "corequisite": "" + }, + { + "moduleCode": "ST5222", + "title": "Advanced Topics in Applied Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5223", + "title": "Statistical Models:Theory/Applications", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5224", + "title": "Advanced Statistical Theory II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST5215 or Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5225", + "title": "Statistical Analysis of Networks", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST2131 Probability", + "corequisite": "Basic Statistical Theory" + }, + { + "moduleCode": "ST5226", + "title": "Spatial Statistics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST5201 Basic Statistical Theory", + "corequisite": "ST5201 Basic Statistical Theory" + }, + { + "moduleCode": "ST5227", + "title": "Applied Data Mining", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ST5201 Basic Statistical Theory,\nST5202 Applied Regression Analysis", + "corequisite": "ST5201 Basic Statistical Theory" + }, + { + "moduleCode": "ST5241", + "title": "Topics I", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5241A", + "title": "Topics IA", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST5241B", + "title": "Topics 1B", + "moduleCredit": 2, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST5242", + "title": "Topics II", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Departmental approval", + "corequisite": "" + }, + { + "moduleCode": "ST5243", + "title": "Topics III", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST5244", + "title": "Topics in Data Science and Analytics", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ST5318", + "title": "Statistical Methods For Health Science", + "moduleCredit": 4, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [], + "preclusion": "ST5202, ST5203", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "MDG5108 or ST2238 or PR2103 or equivalent, or Departmental Approval", + "corequisite": "" + }, + { + "moduleCode": "STR1000", + "title": "Career Creation Starter Workshops", + "moduleCredit": 0, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "STR2000", + "title": "Career Creation Starter Clinics", + "moduleCredit": 0, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW1101E", + "title": "Social Work: A Heart-Head-Hand Connection", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW2101", + "title": "Working with Individuals and Families", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students majoring in Social Work, SW1101E", + "corequisite": "" + }, + { + "moduleCode": "SW2104", + "title": "Human Development over the Lifespan", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students majoring in Social Work or minoring in Human Services.", + "corequisite": "" + }, + { + "moduleCode": "SW2105", + "title": "Values & Skills for Helping Relationships", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Only for students majoring in Social Work, SW1101E", + "corequisite": "" + }, + { + "moduleCode": "SW2106", + "title": "Social Group Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students from 2008 cohort onwards, who have completed SW1101E and who are majoring in Social Work.", + "corequisite": "" + }, + { + "moduleCode": "SW3101", + "title": "Social Work Research Methods", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW1101E", + "corequisite": "" + }, + { + "moduleCode": "SW3103A", + "title": "Social Work Field Practice (I)", + "moduleCredit": 8, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "SW3103B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW1101E, SW2101, SW2104, SW2105. Students from 2019 cohort and before.", + "corequisite": "" + }, + { + "moduleCode": "SW3103B", + "title": "Social Work Field Practice (I)", + "moduleCredit": 6, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW3103A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW1101E, SW2101, SW2104, SW2105. Students from 2020 cohort onwards.", + "corequisite": "" + }, + { + "moduleCode": "SW3104", + "title": "Social Work Field Practice (II)", + "moduleCredit": 8, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "SW3104A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW3103A. Students from 2019 cohort and before.", + "corequisite": "" + }, + { + "moduleCode": "SW3104A", + "title": "Social Work Field Practice (II)", + "moduleCredit": 6, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW3104", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW3103B. Students from 2020 cohort onwards.", + "corequisite": "" + }, + { + "moduleCode": "SW3105", + "title": "Community Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students majoring in Social Work, SW1101E. Students from 2008 cohort onwards.", + "corequisite": "" + }, + { + "moduleCode": "SW3202", + "title": "Practicing Theories in Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students majoring in Social Work, SW1101E", + "corequisite": "" + }, + { + "moduleCode": "SW3205", + "title": "Interpersonal Conflict Resolution", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW3208", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3206", + "title": "Gender Issues in Social Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3207", + "title": "Social Work in Medical Settings", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3208", + "title": "Negotiation & Conflict Resolution", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW3205, PL4233", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3209", + "title": "Counselling Theories & Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students majoring in Social Work, SW1101E", + "corequisite": "" + }, + { + "moduleCode": "SW3211", + "title": "Community-Based Family Services", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW2101", + "corequisite": "" + }, + { + "moduleCode": "SW3212", + "title": "Occupational Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3213", + "title": "Working With Older Adults", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3214", + "title": "Counselling Process & Skills", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW3209 Counselling Theories and Practice and for Social Work major students only.", + "corequisite": "" + }, + { + "moduleCode": "SW3215", + "title": "Socio-Cultural Theories in Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3216", + "title": "Urban Youth Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students majoring in Social Work or minoring in Human Services, and SW1101E.", + "corequisite": "" + }, + { + "moduleCode": "SW3217", + "title": "Mental Health and Illness", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "PL3236 Abnormal Psychology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3219", + "title": "Child-centric Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3220", + "title": "Introduction to Social Policy", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW3550", + "title": "Social Work Internship", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Any other XX3550 internship modules (Note: Students who change major may not do a second internship in their new major)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students should: have completed a minimum of 24 MC in Social Work; and have declared Social Work as their Major.", + "corequisite": "" + }, + { + "moduleCode": "SW3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SW3880", + "title": "Special Topics in Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW4101", + "title": "Advanced Family-Centred Swk Practice", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4102", + "title": "Social Policy and Planning", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105, and SW3103A with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4103", + "title": "Advanced Research and Evaluation", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105, SW3101 or PL2131 or SC2101, and SW3103A, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4201", + "title": "Theory Building in Social Work Practice", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4202", + "title": "Special Areas of Social Work Practice", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4202A", + "title": "Healthcare Issues and Policies", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "Non-Social Work majors", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4203", + "title": "Integrative Seminar for Profn'l Devpt", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4204", + "title": "Management Info Systems in Social Work", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4205", + "title": "Social Impact Analysis", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4207", + "title": "Social Demography", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4208", + "title": "Social Gerontology", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105, and SW3103A, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4209", + "title": "Law & Social Work Practice", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and\n(ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4210", + "title": "Social Work & Technology of the Future", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4211", + "title": "Welfare Economics", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 or SW4102 in the semester they intend to read the SW4000 modules or (iii) Students who have passed or are currently reading EC3101 or EC3102 can read this module as an unrestricted elective, with a minimum CAP of\n3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4213", + "title": "Social Networks & Social Support", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105, and SW3103A, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4214", + "title": "Comparative Social Service Systems in SEA", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105, and SW3103A, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4216", + "title": "Advanced Studies in Community Work", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105, and SW3103A, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4217", + "title": "Advanced Studies in Family Development", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4219", + "title": "Crisis and Disaster Recovery Management", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4220", + "title": "Agency Planning and Development", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which student must have passed SW1101E, SW2101, SW2104, SW2105 and SW3103A with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4221", + "title": "Social Work and Rehabilitation of Offenders", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which student must have passed SW1101E, SW2101, SW2104, SW2105 and SW3103A with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4222", + "title": "Social Work Practice in the Field of Disability", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4223", + "title": "Child-Centric Social Work", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SW3219", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4224", + "title": "Financial Capability and Asset Building", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4225", + "title": "Ethics in Social Work Practice", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4226", + "title": "Social Enterprises and Social Innovations", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SW4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 - 2015:\nCompleted 110 MCs including 60 MCs of SW major requirements with a minimum CAP of 3.50.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of SW major requirements with a minimum CAP of 3.50.", + "corequisite": "" + }, + { + "moduleCode": "SW4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SW4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 - 2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SW, with a minimum CAP of 3.20.\n\nCohort 2016 onwards: \nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SW, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "SW4880", + "title": "Special Topics in Social Work", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW4880A", + "title": "Social Work and Infectious Diseases", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80MCs, including 28MCs in SW of which (i) student must have passed SW1101E, SW2101, SW2104, SW2105 and (ii) passed or are concurrently reading SW3104 in the semester they intend to read the SW4000 modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "SW5103", + "title": "Family Systems Theory and Intervention", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW5243 Family in the Local Context", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5103R", + "title": "Family Therapy", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW5243 Family in the Local Context", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5104", + "title": "Management of Human Service Organizations", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5104R", + "title": "Management of Human Service Organizations", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5106", + "title": "Social Policy and Welfare Services", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5106R", + "title": "Social Welfare Policy and Services", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5107", + "title": "Program Development and Evaluation", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5107R", + "title": "Program Development and Evaluation", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5111", + "title": "Advanced Practicum", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Only for Master of Social Work (course work) students with a Bachelor in Social Work degree.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5111A", + "title": "Practicum", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Students enrolled in MSW (course work) programme.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 onwards:\nSW5114", + "corequisite": "" + }, + { + "moduleCode": "SW5111B", + "title": "Practicum", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Only for Master of Social Work (coursework) students with a Graduate Diploma in Social Work qualification", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5112", + "title": "Supervised Project", + "moduleCredit": 8, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Only for M.Soc.Sci (Social Work) Students and/or consent of the Instructor.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW5107", + "corequisite": "" + }, + { + "moduleCode": "SW5112R", + "title": "Supervised Project", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Only for M.Soc.Sci. (Social Work) students and/or consent of the Instructor", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5113", + "title": "Social Work With Groups and Community", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "- SWD5102\n- Only for Master of Social Work (coursework) students without Bachelor of Social Work or Graduate Diploma in Social Work qualification.", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5114", + "title": "Contemporary Social Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "- Not available to undergraduate students\n- SWD5103\n- Only for Master of Social Work (coursework) students without Bachelor of Social Work or Graduate Diploma in Social Work qualification.", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5115", + "title": "Human Development in Context", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "- Not available to undergraduate students\n- SWD5104\n- Only for Master of Social Work (coursework) students without Bachelor of Social Work or Graduate Diploma in Social Work qualification.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5116", + "title": "Skills in Advanced Social Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "- Not available to undergraduate students\n- SWD5105\n- Only for Master of Social Work (coursework) students without Bachelor of Social Work or Graduate Diploma in Social Work qualification.", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5117A", + "title": "Practice Research Capstone Seminar I", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Only for Master of Social Work (by coursework) students from cohort 2019 onwards.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW5107", + "corequisite": "" + }, + { + "moduleCode": "SW5117B", + "title": "Practice Research Capstone Seminar II", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "Only for Master of Social Work (by coursework) students from cohort 2019 onwards", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SW5117A", + "corequisite": "" + }, + { + "moduleCode": "SW5205", + "title": "Working with Trauma - Infancy through Adolescence", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5205R", + "title": "Working with Trauma - Infancy through Adolescence", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5206", + "title": "Mastering Leadership", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5206R", + "title": "Mastering Leadership", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5207", + "title": "Working with Multi-Stressed Families", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5207R", + "title": "Working with Multi-Stressed Families", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5208", + "title": "Using Play Therapy with Children and Families", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5208R", + "title": "Using Play Therapy with Children and Families", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5209", + "title": "Theory and Practice of Social Work Supervision", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5209R", + "title": "Theory and Practice of Social Work Supervision", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5210", + "title": "Trauma and Mental Health", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5210R", + "title": "Trauma and Mental Health", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5211", + "title": "Risk Assessment & Management: Mental Health", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5211R", + "title": "Risk Assessment & Management: Mental Health", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5213", + "title": "Practice with Persons with Disability", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5213R", + "title": "Practice with Persons with Disability", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5215", + "title": "Poverty and Asset-Building Policy", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5215R", + "title": "Poverty and Asset-Building Policy", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5216", + "title": "Family and Interpersonal Violence", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5216R", + "title": "Family and Interpersonal Violence", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5217", + "title": "Continuum of Care and Healthy Ageing", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5217R", + "title": "Continuum of Care and Healthy Ageing", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5218", + "title": "Practice with Persons with Addiction", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5218R", + "title": "Practice with Persons with Addiction", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5219", + "title": "Palliative and End-Of-Life Care", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5219R", + "title": "Palliative and End-Of-Life Care", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5220", + "title": "Statistics for Social Workers", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5220R", + "title": "Statistics for Social Workers", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5222", + "title": "Personnel Practice & Management", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW6222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5245", + "title": "Current Group Approaches in Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5245R", + "title": "Current Group Approaches in Social Work", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5247", + "title": "Social Prevention and Public Education", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5252", + "title": "Community Organisation and Development", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5252R", + "title": "Community Organisation and Development", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5253", + "title": "Volunteer Management", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5253R", + "title": "Volunteer Management", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5880", + "title": "Special Topics in Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5880R", + "title": "Special Topics in Social Work", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5881", + "title": "Topics in Social Work – Direct Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5881R", + "title": "Topics in Social Work - Direct Practice", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5882", + "title": "Topics in Social Work - Social Policy", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5882R", + "title": "Topics in Social Work - Social Policy", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5883", + "title": "Topics in Social Work - Social Work Leadership", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5883R", + "title": "Topics in Social Work - Social Work Leadership", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5884", + "title": "Topics in Social Work - Research", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW5884R", + "title": "Topics in Social Work - Research", + "moduleCredit": 5, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6101", + "title": "Social Theory in Social Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6102", + "title": "Policy & Research in Social Welfare", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW5102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6231", + "title": "Human Service Research & Evaluation", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6241", + "title": "Theory & Practice in Psychotherapy", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6249", + "title": "Specialised Policy Studies", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6257", + "title": "Research Design & Quantitative Methods", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6259", + "title": "Specialised Fields of Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW5259", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SW6262", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SW6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Non-research students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5102", + "title": "Social Work With Groups and Community", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "SW5113", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5103", + "title": "Contemporary Social Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "- Not available to undergraduate students\n- SW5114", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5104", + "title": "Human Development in Context", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "- Not available to undergraduate students\n- SW5115", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5105", + "title": "Skills in Advanced Social Work Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "- Not available to undergraduate students\n- SW5116", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5120", + "title": "Social Work Practicum", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "SW5120", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SWD5103 Contemporary Social Work Practice", + "corequisite": "" + }, + { + "moduleCode": "SWD5261", + "title": "Gerontological Counselling", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5263", + "title": "Family Centred Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5269", + "title": "Working With Children and Youth", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5270", + "title": "Child Welfare Policy and Practice", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5272", + "title": "Multidiscipinary Perspectives On Ageing", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5273", + "title": "Intervention With the Terminally Iii", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5274", + "title": "Family Systems and Intervention", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5275", + "title": "Human Sexuality and Marital Therapy", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5276", + "title": "Family Stress and Coping", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5277", + "title": "Planned Social Change", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5279", + "title": "Comparative Group Modalities", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5280", + "title": "Nature of Drugs & Alcohol Abuse", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5281", + "title": "Individuals, Families & Substance Abuse", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "SW5281; Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5282", + "title": "Drugs & Alcohol Abuse Treatment", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5283", + "title": "Disability and Rehabilitative Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5284", + "title": "Health & Mental Health Service Systems", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5285", + "title": "Rehabilitation Programme Issues", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5286", + "title": "Common Psychiatric Disorders in Adults", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5292", + "title": "Topical Studies in Social Work Methods", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5293", + "title": "Topical Studies in Social Work Issues", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5297", + "title": "Human Service Organisations & Management", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5298", + "title": "Approaches in Community Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5880", + "title": "Topics in Social Work", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5880A", + "title": "Service User Involvement", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "Not available to undergraduate students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5880B", + "title": "Social Work and Infectious Diseases", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "Not available to undergraduate students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWD5880C", + "title": "Grief and Bereavement Counselling", + "moduleCredit": 4, + "department": "Social Work", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "Not available to undergraduate students.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWE5001", + "title": "Architecting Scalable Systems", + "moduleCredit": 13, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Practical working knowledge of building software systems using basic software engineering principles in the areas of detailed software design, coding and testing.", + "corequisite": "" + }, + { + "moduleCode": "SWE5002", + "title": "Designing and Managing Products and Platforms", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWE5003", + "title": "Engineering Big Data", + "moduleCredit": 11, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWE5004", + "title": "Architecting Smart Systems", + "moduleCredit": 11, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWE5005", + "title": "Securing Ubiquitous Systems", + "moduleCredit": 12, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SWE5007", + "title": "Capstone Project in Software Engineering", + "moduleCredit": 6, + "department": "Institute of Systems Science", + "faculty": "Institute of Systems Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Before commencing the Capstone Project, the students must successfully complete three out of the following certificates:\n1. Graduate Certificate in Architecting Scalable Systems (Mandatory)\n2. Graduate Certificate in Designing and Managing Products and Platforms\n3. Graduate Certificate in Architecting Smart Systems\n4. Graduate Certificate in Engineering Big Data\n5. Graduate Certificate in Securing Ubiquitous Systems", + "corequisite": "" + }, + { + "moduleCode": "SYE5001", + "title": "Systems Engineering and Architecture", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5402 Introduction to Systems Engineering and\nArchitecture", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5002", + "title": "Large Scale Systems Project Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5003", + "title": "Engineering Finance", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5004", + "title": "Large Scale Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5404 Large Scale Systems Engineering", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "SyE5001 Systems Engineering and Architecture", + "corequisite": "" + }, + { + "moduleCode": "SYE5005", + "title": "Management Science in Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5201", + "title": "Integrated Logistics Support", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5202", + "title": "Lean Six Sigma", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5217 Fundamentals of Lean Six Sigma", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5203", + "title": "Decision Analysis & Risk Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5203 Decision Analysis", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5204", + "title": "Learning from Data and Knowledge Discovery", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5006 Learning from Data", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5301", + "title": "Humans and Systems Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE 5301 Human Factors in Engineering and\nDesign", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5302", + "title": "Leadership in Engineering", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "SYE5403", + "title": "Systems Engineering Project and Case Studies", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least 4 Core modules of the program.", + "corequisite": "" + }, + { + "moduleCode": "SYE5409", + "title": "Special Topics in Systems Engineering & Management", + "moduleCredit": 4, + "department": "Industrial Systems Engineering and Management", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TBA2101", + "title": "Building an Analytics Organisation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TBA2102", + "title": "Introduction to Business Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TBA2103", + "title": "Data Visualisation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TIC2001", + "corequisite": "" + }, + { + "moduleCode": "TBA2104", + "title": "Predictive Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "TMA2103 Probability and Statistics and TBA2102 Introduction to Business Analytics" + }, + { + "moduleCode": "TBA2105", + "title": "Web Mining", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TIC2601 Database and Web Applications", + "corequisite": "" + }, + { + "moduleCode": "TBA3102", + "title": "Text Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TBA2105 Web Mining", + "corequisite": "" + }, + { + "moduleCode": "TBA3103", + "title": "Application Systems Development for Business Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TBA2103 Data Visualisation and TBA2104 Predictive Analytics" + }, + { + "moduleCode": "TBA3150", + "title": "Mobile Application and Game Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TBA3204", + "title": "Web Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TBA2102 Introduction to Business Analytics", + "corequisite": "" + }, + { + "moduleCode": "TBA3222", + "title": "Marketing Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TBA3241", + "title": "Social Media Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TBA4204", + "title": "Financial Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TBA4212", + "title": "Search Engine Optimisation and Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TBA3204 Web Analytics", + "corequisite": "" + }, + { + "moduleCode": "TBA4215", + "title": "Workforce Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TBA4220", + "title": "Geospatial Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "BT4015 (Geospatial Analytics)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TBA2103 Data Visualisation", + "corequisite": "" + }, + { + "moduleCode": "TBA4230", + "title": "Audit Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TBA4250", + "title": "Healthcare Analytics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "The student has completed at least 56MCs (i.e., 14 modules)", + "corequisite": "" + }, + { + "moduleCode": "TC1005", + "title": "MATLAB Programming for Chemical Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TCN1005", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TC1411", + "title": "Mathematics for Chemical Engineers 1", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TCN1411", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TC1422", + "title": "Materials for Chemical Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TCN1422", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TC2411", + "title": "Mathematics for Chemical Engineers 2", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TCN2411", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC1411 Mathematics for Chemical Engineers 1", + "corequisite": "" + }, + { + "moduleCode": "TCE1109", + "title": "Statics And Mechanics of Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE1109", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCE2112", + "title": "Soil Mechanics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE2112", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "EG1109 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TCE2134", + "title": "Hydraulics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CE2134", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109/CE1109X or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TCE2155", + "title": "Structural Mechanics and Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE2155", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "EG1109FC/EG1109 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TCE2183", + "title": "Construction Project Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE2183", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCE2184", + "title": "Infrastructure & the Environment", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE2184", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCE2407", + "title": "Engineering & Uncertainty Analyses", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "CE2407", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TTG1401", + "corequisite": "TME2401" + }, + { + "moduleCode": "TCE3001", + "title": "Water Quality Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "ESE2401 & ESE3401 & ESE3001", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCE3115", + "title": "Geotechnical Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CE3115", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112", + "corequisite": "" + }, + { + "moduleCode": "TCE3116", + "title": "Foundation Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CE3116", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112", + "corequisite": "" + }, + { + "moduleCode": "TCE3121", + "title": "Transportation Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CE3121", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2407", + "corequisite": "" + }, + { + "moduleCode": "TCE3132", + "title": "Water Resources Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE3132", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2134", + "corequisite": "" + }, + { + "moduleCode": "TCE3155", + "title": "Structural Analysis", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE3155", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCE2155", + "corequisite": "" + }, + { + "moduleCode": "TCE3165", + "title": "Structural Concrete Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CE3165", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCE2155", + "corequisite": "" + }, + { + "moduleCode": "TCE3166", + "title": "Structural Steel Design and System", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CE3166", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCE2155", + "corequisite": "" + }, + { + "moduleCode": "TCE4103", + "title": "Design Project", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "CE4103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Year 4 Standing", + "corequisite": "" + }, + { + "moduleCode": "TCE4104", + "title": "BTech Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "CE4104", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Year 4 Standing", + "corequisite": "" + }, + { + "moduleCode": "TCE4221", + "title": "Design of Land Transport Infrastructures", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE4221", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3121", + "corequisite": "" + }, + { + "moduleCode": "TCE4247", + "title": "Treatment Plant Hydraulics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE4247", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2134", + "corequisite": "" + }, + { + "moduleCode": "TCE4257", + "title": "Linear Finite Element Analysis", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE4257", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3155", + "corequisite": "" + }, + { + "moduleCode": "TCE4258", + "title": "Structural Stability & Dynamics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE4258", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3115", + "corequisite": "" + }, + { + "moduleCode": "TCE4282", + "title": "Building Information Modeling for Project Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "CE4282", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCE2183", + "corequisite": "" + }, + { + "moduleCode": "TCE4401", + "title": "Water & Wastewater Engineering 2", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "ESE4401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3001", + "corequisite": "" + }, + { + "moduleCode": "TCE4408", + "title": "Environmental Impact Assessment", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "ESE4408", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Year 4 standing", + "corequisite": "" + }, + { + "moduleCode": "TCE5025", + "title": "Intelligent Transportation Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TP5025", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3121", + "corequisite": "" + }, + { + "moduleCode": "TCE5026", + "title": "Transportation Management & Policy", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TP5026", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCE5106", + "title": "Ground Improvement", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5106", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112", + "corequisite": "" + }, + { + "moduleCode": "TCE5107", + "title": "Pile Foundations", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5107", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112 & TCE3116", + "corequisite": "" + }, + { + "moduleCode": "TCE5108", + "title": "Earth Retaining Structures", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5108", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112", + "corequisite": "" + }, + { + "moduleCode": "TCE5113", + "title": "Geotechnical Investigation & Monitoring", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5113", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112", + "corequisite": "" + }, + { + "moduleCode": "TCE5202", + "title": "Analysis & Design of Offshore Structures", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "OT5202", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2155", + "corequisite": "" + }, + { + "moduleCode": "TCE5206", + "title": "Offshore Foundations", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "OT5206", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2112 & TCE3116", + "corequisite": "" + }, + { + "moduleCode": "TCE5509", + "title": "Advanced Structural Steel Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5509", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3166", + "corequisite": "" + }, + { + "moduleCode": "TCE5510", + "title": "Advanced Structural Concrete Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CE5510", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3165", + "corequisite": "" + }, + { + "moduleCode": "TCE5604", + "title": "Advanced Concrete Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5604", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2155", + "corequisite": "" + }, + { + "moduleCode": "TCE5611", + "title": "Precast Concrete Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5611", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE3165", + "corequisite": "" + }, + { + "moduleCode": "TCE5805", + "title": "Construction Equipment and Methods", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CE5805", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCE2183", + "corequisite": "" + }, + { + "moduleCode": "TCN1005", + "title": "MATLAB Programming for Chemical Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC1005", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN1111", + "title": "Chemical Engineering Principles", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC1101, CN1111E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN1411", + "title": "Mathematics for Chemical Engineers 1", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC1411", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN1422", + "title": "Materials for Chemical Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC1422", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN2116", + "title": "Chemical Kinetics And Reactor Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC2106, CN2116E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN1111", + "corequisite": "TCN2125" + }, + { + "moduleCode": "TCN2121", + "title": "Chemical Engineering Thermodynamics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC2111, CN2121E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCN1111", + "corequisite": "" + }, + { + "moduleCode": "TCN2122", + "title": "Fluid Mechanics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC2112, CN2122E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCN2411", + "corequisite": "" + }, + { + "moduleCode": "TCN2125", + "title": "Heat And Mass Transfer", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC2115, CN2125E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCN2122", + "corequisite": "" + }, + { + "moduleCode": "TCN2411", + "title": "Mathematics for Chemical Engineers 2", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TC2411", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TTG1401 Engineering Mathematics I", + "corequisite": "" + }, + { + "moduleCode": "TCN3121", + "title": "Process Dynamics & Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC3111, CN3121E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCN2411", + "corequisite": "" + }, + { + "moduleCode": "TCN3124", + "title": "Particle Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC3114, CN3124E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCN2122", + "corequisite": "" + }, + { + "moduleCode": "TCN3132", + "title": "Separation Processes", + "moduleCredit": 5, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC2113, CN3132E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TCN1111, TCN2121, TCN2125", + "corequisite": "" + }, + { + "moduleCode": "TCN3135", + "title": "Process Safety, Health and Environment", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "CN3135E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2121, TCN2122", + "corequisite": "" + }, + { + "moduleCode": "TCN3421", + "title": "Process Modeling & Numerical Simulation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC3411, CN3421E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2116, TCN2121, TCN2125", + "corequisite": "" + }, + { + "moduleCode": "TCN4119", + "title": "B.Tech. Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4119E, CN4118E", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "All Level 3000 Essential Modules", + "corequisite": "" + }, + { + "moduleCode": "TCN4122", + "title": "Process Synthesis and Simulation", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CN4122E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2116, TCN2121, TCN3124 & TCN3132", + "corequisite": "" + }, + { + "moduleCode": "TCN4124", + "title": "Final Year Design Project", + "moduleCredit": 6, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CN4124E", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "TCN3135, TCN3421, TCN4122, TTG2415", + "corequisite": "" + }, + { + "moduleCode": "TCN4203", + "title": "Polymer Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4203E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN4205", + "title": "Pinch Analysis and Process Integration", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4205E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2125 & TCN3421", + "corequisite": "" + }, + { + "moduleCode": "TCN4208", + "title": "Biochemical Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4208E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TC2106 /CN2116E/TCN2116 & TC2112/CN2122E/TCN2122", + "corequisite": "" + }, + { + "moduleCode": "TCN4210", + "title": "Membrane Science And Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TC4210, CN4210E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN4211", + "title": "Petrochemicals & Processing Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TC4211, CN4211E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN4215", + "title": "Food Technology and Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TC4215, CN4215E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2122 & TCN3132", + "corequisite": "" + }, + { + "moduleCode": "TCN4216", + "title": "Electronic Materials Science", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TC4216, CN4216E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN1422", + "corequisite": "" + }, + { + "moduleCode": "TCN4217", + "title": "Processing of Microelectronic Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4217E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN1422", + "corequisite": "" + }, + { + "moduleCode": "TCN4227", + "title": "Advanced Process Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TC4227, CN4227E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN3121", + "corequisite": "" + }, + { + "moduleCode": "TCN4229", + "title": "Computer Aided Chemical Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4229E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN3421", + "corequisite": "" + }, + { + "moduleCode": "TCN4231", + "title": "Downstream Processing of Biochemical and Pharmaceutical Products", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4231E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN4233", + "title": "Good Manufacturing Practices in Pharmaceutical Industry", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CN4233R, PR2143, PR3145, PR4206, CN4233E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2122, TCN2125", + "corequisite": "" + }, + { + "moduleCode": "TCN4238", + "title": "Chemical & Biochemical Process Modeling", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CN4238E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN1111 & TCN3421", + "corequisite": "" + }, + { + "moduleCode": "TCN4240", + "title": "Unit Operations and Processes for Effluent Treatment", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CN4240E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TCN4242", + "title": "Optimization of Chemical Processes", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "CN4242E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TCN2411 & TCN3421", + "corequisite": "" + }, + { + "moduleCode": "TCN4246", + "title": "Chemical And Bio-Catalysis", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CN4246E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5101", + "title": "Specification of Complex Hardware/Software System", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5102", + "title": "Embedded Systems in Silicon", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5104", + "title": "Dsp Algorithms:design & Implementation", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5201", + "title": "Basics of Product Development", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5202", + "title": "Applied Engineering Statistics", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5204", + "title": "Quality & Reliability By Design", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5211", + "title": "Short Cycle Product Development Process", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "IE5211 New Product Management", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5215", + "title": "Human Aspects of Product Development and Quality", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5235", + "title": "Design For X", + "moduleCredit": 4, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5341", + "title": "Professional Development", + "moduleCredit": 2, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD5991", + "title": "Industrial Project", + "moduleCredit": 0, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD6109", + "title": "Embedded Systems Project", + "moduleCredit": 8, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TD6209", + "title": "Product Design and Realization", + "moduleCredit": 10, + "department": "Centre for Design Tech / DTI", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TDEE2004", + "title": "Electronic Devices and Materials", + "moduleCredit": 4, + "department": "Electrical and Computer Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TE2002", + "title": "Engineering Mathematics II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TEE2002, TM2401, TME2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2102 or TG1401", + "corequisite": "" + }, + { + "moduleCode": "TE2003", + "title": "Advanced Mathematics for Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2401, TEE2003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2002", + "corequisite": "" + }, + { + "moduleCode": "TE2101", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE1122, TEE2101, TIC1001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TE3201", + "title": "Software Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE3201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2101", + "corequisite": "" + }, + { + "moduleCode": "TE3801", + "title": "Robust Design Of Electronic Circuits", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TEE3801", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EE2005E or EE2021E or TEE2027) and TE2003", + "corequisite": "" + }, + { + "moduleCode": "TE4001", + "title": "BTech Dissertation", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TEE4001", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 Standing.", + "corequisite": "" + }, + { + "moduleCode": "TEE2002", + "title": "Engineering Mathematics II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2002, TM2401, TME2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TE2102 or TTG1401", + "corequisite": "" + }, + { + "moduleCode": "TEE2003", + "title": "Advanced Mathematics for Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2401, TE2003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2002", + "corequisite": "" + }, + { + "moduleCode": "TEE2011", + "title": "Engineering Electromagnetics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE2011E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2002", + "corequisite": "TEE2003" + }, + { + "moduleCode": "TEE2023", + "title": "Signals and Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE2009E, EE2010E, EE2023E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TTG1401", + "corequisite": "" + }, + { + "moduleCode": "TEE2026", + "title": "Digital Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE2020E, TEE2020", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "EE1002 or equivalent", + "corequisite": "TE2101 or TEE2101" + }, + { + "moduleCode": "TEE2027", + "title": "Electronic Circuits", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE2004E, EE2005E, EE2021E, TEE2021", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "EG1112 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TEE2028", + "title": "Microcontroller Programming and Interfacing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE2007E, EE2024E, TEE2024", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "EE2020E or TEE2020 or TEE2026", + "corequisite": "TE2101 or TEE2101" + }, + { + "moduleCode": "TEE2033", + "title": "Integrated System Lab", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "(EE2031E and EE2032E) or (TEE2031 and TEE2032)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(EE2023E/TEE2023) and\n(EE2011E/TEE2011) and\n(EE2021E/TEE2021/TEE2027)", + "corequisite": "" + }, + { + "moduleCode": "TEE2101", + "title": "Programming Methodology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE1122, TE2101, TIC1001", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TEE3013", + "title": "Labview for Electrical Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "EE3013E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(TEE2021 or TEE2027) and TTG1401", + "corequisite": "" + }, + { + "moduleCode": "TEE3031", + "title": "Innovation & Enterprise I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4209, TME4209, EE3001E, EE3031E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing", + "corequisite": "" + }, + { + "moduleCode": "TEE3104", + "title": "Intro to RF and Microwave Sys & Circuits", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE3104E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2011", + "corequisite": "" + }, + { + "moduleCode": "TEE3131", + "title": "Communication Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE3103E, EE3131E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2023", + "corequisite": "" + }, + { + "moduleCode": "TEE3201", + "title": "Software Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TE3201", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2101", + "corequisite": "" + }, + { + "moduleCode": "TEE3207", + "title": "Computer Architecture", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE3207E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2024 or TEE2028", + "corequisite": "" + }, + { + "moduleCode": "TEE3208", + "title": "Embedded Computer Systems Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TE3202, EE3208E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2024 or TEE2028", + "corequisite": "" + }, + { + "moduleCode": "TEE3331", + "title": "Feedback Control Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "EE2010E, EE3331E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2023", + "corequisite": "" + }, + { + "moduleCode": "TEE3408", + "title": "Integrated Analog Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE3408E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2021 or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "TEE3431", + "title": "Microelectronics Materials and Devices", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE3406E, EE2004E, EE3431E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "TEE2021 or TEE2027" + }, + { + "moduleCode": "TEE3501", + "title": "Power Electronics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE3501E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2021 or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "TEE3506", + "title": "Electrical Energy Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TEE3731", + "title": "Signal Processing Methods", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "EE3731E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2003 and TEE2023", + "corequisite": "" + }, + { + "moduleCode": "TEE3801", + "title": "Robust Design Of Electronic Circuits", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TE3801", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(TEE2021 or TEE2027) and TEE2003", + "corequisite": "" + }, + { + "moduleCode": "TEE4001", + "title": "BTech Dissertation", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TE4001", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Level 4 standing", + "corequisite": "" + }, + { + "moduleCode": "TEE4101", + "title": "Radio-Frequency (RF) Communications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE4101E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2011", + "corequisite": "" + }, + { + "moduleCode": "TEE4112", + "title": "Radio Frequency Design and Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE4112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2011", + "corequisite": "" + }, + { + "moduleCode": "TEE4113", + "title": "Digital Communications & Coding", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "EE4102E, EE4103E, EE4113E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TEE2003 & TEE3131", + "corequisite": "" + }, + { + "moduleCode": "TEE4204", + "title": "Computer Networks", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "CS2105, CS3103, EE3204E, TEE3204, EE4204E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TEE2003", + "corequisite": "" + }, + { + "moduleCode": "TEE4210", + "title": "Network Protocols and Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE4210E, TIC2501", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2003", + "corequisite": "" + }, + { + "moduleCode": "TEE4211", + "title": "Data Science for the Internet of Things", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "- TE2003/TEE2003 Advanced Mathematics for Engineers\n- Familiarity with the Python programming language", + "corequisite": "" + }, + { + "moduleCode": "TEE4214", + "title": "Real-Time Embedded Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE4214E, TIC2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2101 and (TEE2024 or TEE2028)", + "corequisite": "" + }, + { + "moduleCode": "TEE4303", + "title": "Industrial Control Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE3302E, TEE3302, EE4303E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE3331", + "corequisite": "" + }, + { + "moduleCode": "TEE4305", + "title": "Introduction To Fuzzy/Neural Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "EE4305E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2023", + "corequisite": "" + }, + { + "moduleCode": "TEE4407", + "title": "Analog Electronics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE3407E, TEE3407, EE4407E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TEE2021 or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "TEE4415", + "title": "Integrated Digital Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE4415E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2020 or TEE2026", + "corequisite": "" + }, + { + "moduleCode": "TEE4435", + "title": "Modern Transistors and Memory Devices", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE4408E, EE4412E, EE4435E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2021 or TEE2027", + "corequisite": "TEE3431" + }, + { + "moduleCode": "TEE4436", + "title": "Fabrication Process Technology", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "EE4411E, EE4436E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2021 or TEE2027", + "corequisite": "" + }, + { + "moduleCode": "TEE4704", + "title": "Introduction to Computer Vision and Image Processing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "CS4243, EE3206E, TEE3206, EE4704E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TEE2023", + "corequisite": "" + }, + { + "moduleCode": "TG1401", + "title": "Engineering Mathematics I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2102 or TM1401 or TTG1401", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TG1422", + "title": "Financial And Management Accounting", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TG1423", + "title": "Industrial Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TG2415", + "title": "Ethics In Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TTG2415", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TG3001", + "title": "Industrial Practice", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TG3002, TTG3002, TTG3001, TIC3901", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 76MC of modules, including Advanced Placement Credits", + "corequisite": "" + }, + { + "moduleCode": "TG3002", + "title": "Industrial Practice", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TG3001, TTG3001, TTG3002, TIC3901", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 76MC of modules, including Advanced Placement Credits", + "corequisite": "" + }, + { + "moduleCode": "TG3101A", + "title": "Independent Study", + "moduleCredit": 2, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TTG3101A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing and approval from Dean of SCALE", + "corequisite": "" + }, + { + "moduleCode": "TG3101B", + "title": "Independent Study", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TTG3101B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing and approval from Dean of SCALE", + "corequisite": "" + }, + { + "moduleCode": "TIC1001", + "title": "Introduction to Computing and Programming I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TE2101, TEE2101", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIC1002", + "title": "Introduction to Computing and Programming II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TIC1001", + "corequisite": "" + }, + { + "moduleCode": "TIC1101", + "title": "Professional, Ethical, and Social Issues in Computing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIC1201", + "title": "Discrete Structures", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TMA1001", + "corequisite": "" + }, + { + "moduleCode": "TIC2001", + "title": "Data Structures and Algorithms", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TIC1002", + "corequisite": "" + }, + { + "moduleCode": "TIC2002", + "title": "Introduction to Software Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2001", + "corequisite": "" + }, + { + "moduleCode": "TIC2003", + "title": "Software Development Project", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2001 and TIC2601", + "corequisite": "" + }, + { + "moduleCode": "TIC2101", + "title": "Information Systems and Organisations", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIC2301", + "title": "Introduction to Information Security", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC1002", + "corequisite": "" + }, + { + "moduleCode": "TIC2401", + "title": "Introduction to Computer Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE4214E, TEE4214", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC1002", + "corequisite": "" + }, + { + "moduleCode": "TIC2501", + "title": "Computer Networks and Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "EE4210E, TEE4210", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC1002", + "corequisite": "" + }, + { + "moduleCode": "TIC2601", + "title": "Database and Web Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC1002", + "corequisite": "" + }, + { + "moduleCode": "TIC2701", + "title": "Principles of Programming Languages", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2001", + "corequisite": "" + }, + { + "moduleCode": "TIC2901", + "title": "Communications for Computing Professionals", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed as least 40MCs of program requirements excluding APC", + "corequisite": "" + }, + { + "moduleCode": "TIC3001", + "title": "Software Requirements Analysis and Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2002 and TIC2601", + "corequisite": "" + }, + { + "moduleCode": "TIC3002", + "title": "User Interface Design and Implementation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2002 and TIC2601", + "corequisite": "" + }, + { + "moduleCode": "TIC3301", + "title": "Information Security Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2301 and TIC2101", + "corequisite": "" + }, + { + "moduleCode": "TIC3302", + "title": "Computer Systems Security", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2301 and TIC2401 and TIC2501", + "corequisite": "" + }, + { + "moduleCode": "TIC3901", + "title": "Industrial Practice", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TG3001, TTG3001, TG3002, TTG3002", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 40 MCs of programme requirements, excluding Advanced Placement Credits", + "corequisite": "" + }, + { + "moduleCode": "TIC4001", + "title": "Software Engineering Practicum I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3001", + "corequisite": "" + }, + { + "moduleCode": "TIC4002", + "title": "Software Engineering Practicum II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3001", + "corequisite": "" + }, + { + "moduleCode": "TIC4003", + "title": "Software Project Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC4001 or TIC4002", + "corequisite": "" + }, + { + "moduleCode": "TIC4004", + "title": "Software Quality Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC4001 or TIC4002", + "corequisite": "" + }, + { + "moduleCode": "TIC4005", + "title": "Parallel and Distributed Software Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3001 and TIC2401 and TIC2501", + "corequisite": "" + }, + { + "moduleCode": "TIC4301", + "title": "Information Security Practicum I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3301 and TIC3302", + "corequisite": "" + }, + { + "moduleCode": "TIC4302", + "title": "Information Security Practicum II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3301 and TIC3302", + "corequisite": "" + }, + { + "moduleCode": "TIC4303", + "title": "Software Security", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2002 and TIC2301", + "corequisite": "" + }, + { + "moduleCode": "TIC4304", + "title": "Web Security", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC2601 and TIC3302", + "corequisite": "" + }, + { + "moduleCode": "TIC4305", + "title": "Network Security", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3302", + "corequisite": "" + }, + { + "moduleCode": "TIC4306", + "title": "Information Security Governance and Audit", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIC3301", + "corequisite": "" + }, + { + "moduleCode": "TIC4901", + "title": "Independent Project", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 56 MCs of programme requirement.", + "corequisite": "" + }, + { + "moduleCode": "TIC4902", + "title": "Capstone Computing Project", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 76 MCs of programme requirement.", + "corequisite": "" + }, + { + "moduleCode": "TIE2010", + "title": "Introduction to Industrial System", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3161, IE2010E", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE2020", + "title": "Probability and Statistics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "IE2120E, TMA2103, TIE2120, IE2020E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE2030", + "title": "Programming Methodology with Python", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TE2101/TEE2101 Programming Methodology TIC1001 Introduction to Computing and Programming I", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE2100", + "title": "Probability Models with Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "DSC3215, IE2100E", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ST2131/TS2120/IE2120E/TIE2120" + }, + { + "moduleCode": "TIE2110", + "title": "Operations Research I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "DSC3214, MA2215, MA3236, IE2110E", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "MA1102R/MA1505/MA1506/TE2102/TG1401/TTG1401" + }, + { + "moduleCode": "TIE2130", + "title": "Quality Engineering I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TM4271, IE2130E", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "MA1505, MA1506 or SA1101, or ST1131, or ST1131A, or ST1232, or ST2334 or TE2102 or TG1401 or TM1401 or TS2120 or IE2120E or TEE2102 or TTG1401 or TIE2120" + }, + { + "moduleCode": "TIE2140", + "title": "Engineering Economy", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "IE2140E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE2150", + "title": "Human Factors Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "IE2150E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE3010", + "title": "Systems Thinking and Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "IE3010E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE3100", + "title": "Systems Design Project", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "IE3100E", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Level 3 standing", + "corequisite": "" + }, + { + "moduleCode": "TIE3101", + "title": "Statistics for Engineering Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "IE3101E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ST1131/ST2131/ST1232/TS2120/IE2120E/TIE2120" + }, + { + "moduleCode": "TIE3110", + "title": "Simulation", + "moduleCredit": 5, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "DSC3221, IE3110E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TIE2100/DSC3215, IE2100E" + }, + { + "moduleCode": "TIE4101", + "title": "B.Tech. Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "IE4101E, IE4100E", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "TIE4203", + "title": "Decision Analysis in Industrial & Operations Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2120/IE2120E/TIE2020 Probability & Statistics", + "corequisite": "" + }, + { + "moduleCode": "TIE4212", + "title": "Advanced Modeling in Operations Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE2110E/TIE2110 Operations Research I", + "corequisite": "" + }, + { + "moduleCode": "TIE4220", + "title": "Supply Chain Modelling", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "IE4220E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "IE2100E/TIE2100 & IE2110E/TIE2110" + }, + { + "moduleCode": "TIE4229", + "title": "Selected Topics in Logistics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "IE4229E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2110", + "corequisite": "" + }, + { + "moduleCode": "TIE4230", + "title": "Quality Engineering II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "IE4230E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "IE2130E/TIE2130 & IE3101E/TIE3101" + }, + { + "moduleCode": "TIE4239", + "title": "Selected Topics in Quality Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "IE4239E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2100, TIE3101", + "corequisite": "" + }, + { + "moduleCode": "TIE4240", + "title": "Project Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "IE4240E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TIE2140, IE2140E" + }, + { + "moduleCode": "TIE4242", + "title": "Cost Analysis And Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "IE4242E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2140", + "corequisite": "" + }, + { + "moduleCode": "TIE4246", + "title": "New Product Management and Innovation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2140 Engineering Economy", + "corequisite": "" + }, + { + "moduleCode": "TIE4249", + "title": "Selected Topics in Engineering Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "IE4249E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2140", + "corequisite": "" + }, + { + "moduleCode": "TIE4252", + "title": "Introduction to Systems Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IE3010E/TIE3010 Systems Thinking and Design", + "corequisite": "" + }, + { + "moduleCode": "TIE4259", + "title": "Selected Topics in Systems Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "IE4259E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TIE4299", + "title": "Selected Topics in Industrial Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "IE4299E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2010", + "corequisite": "" + }, + { + "moduleCode": "TM2401", + "title": "Engineering Mathematics II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2002 or TC2401 or TC1402 or TM1402 or TME2401", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TG1401" + }, + { + "moduleCode": "TM3101", + "title": "Mechanical Systems Design", + "moduleCredit": 6, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TME3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TM2101 or ME2101E", + "corequisite": "" + }, + { + "moduleCode": "TM4101", + "title": "B.Tech. Dissertation", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TM4102, TME4102", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Senior Level 3 Standing (For AY 2006/2007 intake & earlier); Level 4 standing (For AY 2007/2008 intake onwards)", + "corequisite": "" + }, + { + "moduleCode": "TM4102", + "title": "B.Tech. Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TME4102, TM4101", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "TM4263", + "title": "Manufact'G Simulat'N & Data Communicat'N", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TME4263", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ME3162 , ME3162E, TME2162, TM2162, ME2162E", + "corequisite": "" + }, + { + "moduleCode": "TM4264", + "title": "Fundamentals of Automotive Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TME4264", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TMA1001", + "title": "Introductory Mathematics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TMA2101", + "title": "Calculus for Computing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TMA1001", + "corequisite": "" + }, + { + "moduleCode": "TMA2102", + "title": "Linear Algebra", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2, + 3 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TMA1001", + "corequisite": "" + }, + { + "moduleCode": "TMA2103", + "title": "Probability and Statistics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "IE2120, TIE2120, TIE3101, IE3101E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TMA2101", + "corequisite": "" + }, + { + "moduleCode": "TME2101", + "title": "Fundamentals of Mechanical Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2101, ME2101E", + "attributes": [ + true, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME2114", + "title": "Mechanics of Materials II", + "moduleCredit": 3, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM1111, ME2114E, ME2114", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "ME2112 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TME2121", + "title": "Engineering Thermodynamics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM1121, ME2121E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PC1431 or PC1431FC or PC1431X or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TME2134", + "title": "Fluid Mechanics I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM1131, ME2134E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME2135", + "title": "Fluid Mechanics II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2131, ME2135E, ME2135", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2134, ME2134E", + "corequisite": "" + }, + { + "moduleCode": "TME2142", + "title": "Feedback Control Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3142, ME2142E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TME2401, TM2401", + "corequisite": "" + }, + { + "moduleCode": "TME2143", + "title": "Sensors and Actuators", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2141, ME2143E, ME2143", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "PC1431 or PC1431FC or PC1431X or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TME2151", + "title": "Principles of Mechanical Engineering Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM1151, ME2151E", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME2162", + "title": "Manufacturing Processes", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM2162, ME3162E, TME3162", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME2401", + "title": "Engineering Mathematics II", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2002 or TEE2002 or TC2401 or TC1402 or TM1402", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TTG1401, TG1401" + }, + { + "moduleCode": "TME3101", + "title": "Mechanical Systems Design", + "moduleCredit": 6, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM3101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2101, ME2101E", + "corequisite": "" + }, + { + "moduleCode": "TME3112", + "title": "Mechanics of Machines", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TM2112, ME3112E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME3122", + "title": "Heat Transfer", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM2122, ME3122E, ME2143", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME3211", + "title": "Mechanics of Solids", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3211, ME3211E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + true, + false + ], + "prerequisite": "TME2114, ME2114E", + "corequisite": "" + }, + { + "moduleCode": "TME3233", + "title": "Unsteady Flow in Fluid Systems", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "ME3233, ME3233E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2135 or equivalent", + "corequisite": "" + }, + { + "moduleCode": "TME3241", + "title": "Microprocessor Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM3241, ME3241E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TME2143, ME2143E" + }, + { + "moduleCode": "TME3242", + "title": "Automation", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3242, ME3242E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TME2143, ME2143E" + }, + { + "moduleCode": "TME3251", + "title": "Materials For Engineers", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM3251, ME3251E, ME2143, ME3252", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2151, ME2151E", + "corequisite": "" + }, + { + "moduleCode": "TME3261", + "title": "Computer-Aided Design and Manufacturing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3261, ME3261E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TME3162, ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "TME3263", + "title": "Design for Manufacturing and Assembly", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3261, ME3263E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "ME3162E, TME3162, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "TME4102", + "title": "B.Tech. Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TM4102, TM4101", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Stage 4 standing", + "corequisite": "" + }, + { + "moduleCode": "TME4209", + "title": "The Management Of New Prod. Development", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM4209", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME4213", + "title": "Vibration Theory & Applications", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM3213, ME4213E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME3112, ME3112E", + "corequisite": "" + }, + { + "moduleCode": "TME4223", + "title": "Thermal Environmental Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM3223, ME4223E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2121 & TME3122, ME2121E, ME3122E", + "corequisite": "" + }, + { + "moduleCode": "TME4225", + "title": "Applied Heat Transfer", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4225, ME4225E, ME2143", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME3122, ME3122E", + "corequisite": "" + }, + { + "moduleCode": "TME4245", + "title": "Robot Mechanics and Control", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM4245, ME4245E", + "attributes": [ + false, + false, + true, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2142; TEE3331; ME2142E; EE3331E", + "corequisite": "" + }, + { + "moduleCode": "TME4251", + "title": "Thermal Engineering Of Materials", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "TM4251, ME4251E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2151, ME2151E", + "corequisite": "" + }, + { + "moduleCode": "TME4254", + "title": "Materials in Engineering Design", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM4254, ME4254E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2151, ME2151E", + "corequisite": "" + }, + { + "moduleCode": "TME4256", + "title": "Functional Materials and Devices", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "ME4256, ME4256E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME2151, TME2143, ME2151E, ME2143E", + "corequisite": "" + }, + { + "moduleCode": "TME4261", + "title": "Tool Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4261, ME4261E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TME3162, ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "TME4262", + "title": "Automation in Manufacturing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4262, ME4262E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "TME3162, ME3162E, TM2162, ME2162E and TME2162" + }, + { + "moduleCode": "TME4263", + "title": "Manufact'G Simulat'N & Data Communicat'N", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TM4263", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TME3162, ME3162, ME3162E, TME2162, TM2162, ME2162E", + "corequisite": "" + }, + { + "moduleCode": "TME4264", + "title": "Fundamentals of Automotive Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "TM4264", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TME4283", + "title": "Micro-Fabrication Processes", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TM4283, ME4283E", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TP5001", + "title": "Research Project", + "moduleCredit": 8, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + true, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TP5025", + "title": "Intelligent Transportation Systems and Simulation", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "TCE5025", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE3121, or CE4-standing or higher", + "corequisite": "" + }, + { + "moduleCode": "TP5026", + "title": "Transportation Management & Policy", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [], + "preclusion": "TCE5026", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "TP5028", + "title": "Intermodal Transportation Operations", + "moduleCredit": 4, + "department": "Civil and Environmental Engineering", + "faculty": "Engineering", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + true, + false, + false + ], + "prerequisite": "CE4 standing or higher", + "corequisite": "" + }, + { + "moduleCode": "TR2201", + "title": "Entrepreneurial Marketing", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR2201A", + "title": "Entrepreneurial Marketing", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR2201B", + "title": "Entrepreneurial Marketing", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR2201Y", + "title": "Entrepreneurial Marketing", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3000", + "title": "Independent Study Module in Entrepreneurship", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Applicable to NOC students only", + "corequisite": "" + }, + { + "moduleCode": "TR3001", + "title": "New Product Development", + "moduleCredit": 4, + "department": "Marketing", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3002", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3004, TR3005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3002A", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "TR3004, TR3005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3002B", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "TR3004, TR3005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3002N", + "title": "New Venture Creation", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3004, TR3005", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3003", + "title": "Global Entrepreneurial Marketing", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR2201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3004", + "title": "Engineering Entrepreneurship I (C)", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3005", + "title": "Engineering Entrepreneurship II", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3002", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TR3004", + "corequisite": "" + }, + { + "moduleCode": "TR3006", + "title": "High-Tech Product And Market Development", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR2201, TR3001, TR3003", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TR3004", + "corequisite": "" + }, + { + "moduleCode": "TR3007", + "title": "Entrepreneurial Finance", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3008", + "title": "Technological Innovation", + "moduleCredit": 4, + "department": "Strategy and Policy", + "faculty": "NUS Business School", + "semester": [ + 2 + ], + "preclusion": "IS3251; TR2202.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3008A", + "title": "Technological Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IS3251; TR2202.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3008B", + "title": "Technological Innovation", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "IS3251; TR2202.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3010", + "title": "Ideation - Creating A Business Idea", + "moduleCredit": 6, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3011", + "title": "Planning-Developing A Venture", + "moduleCredit": 6, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3012", + "title": "Execution - Running your own Company", + "moduleCredit": 6, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3013", + "title": "Growth - Managing your Firm", + "moduleCredit": 6, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3014", + "title": "Globalization of New Ventures", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TR2201: Entrepreneurial Marketing or TR3003: Global\nEntrepreneurial Marketing or equivalent. These modules both provide foundation tools and concepts that will help in market opportunity assessment, target market selection, and go-to-market strategies.", + "corequisite": "TR2201: Entrepreneurial Marketing or TR3003: Global Entrepreneurial Marketing or equivalent. These modules both provide foundation tools and concepts that will help in market opportunity assessment, target market selection, and go-to-market strategies." + }, + { + "moduleCode": "TR3049", + "title": "Topics in Entrepreneurship (TIE)", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.", + "corequisite": "Depends on the topics offered, there can be preclusion(s) on existing modules offering similar topics for example new venture creation or new product development." + }, + { + "moduleCode": "TR3201", + "title": "Entrepreneurship Practicum", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3101", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3201N", + "title": "Entrepreneurship Practicum", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3101", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3202", + "title": "Start-up Internship Programme", + "moduleCredit": 12, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3202I", + "title": "Start-up Internship ProgrammeStart-up Internship Programme", + "moduleCredit": 12, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3202N", + "title": "Start-up Internship Programme", + "moduleCredit": 12, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3102", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3202S", + "title": "Start-up Internship Programme", + "moduleCredit": 12, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3202T", + "title": "Start-up Internship Programme", + "moduleCredit": 12, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3203", + "title": "Start-up Case Study & Analysis", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3203E", + "title": "Start-up Case Study & Analysis", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3203I", + "title": "Start-up Case Study & Analysis", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3203N", + "title": "Start-up Case Study & Analysis", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3103", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3203P", + "title": "Start-up Case Study & Analysis", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3203T", + "title": "Start-up Case Study & Analysis", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3103", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3204", + "title": "Entrepreneurship Practicum (Short)", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "TR3201 Entrepreneurial Practicum (8 MCs)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3204S", + "title": "Entrepreneurship Practicum (Short)", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3201 Entrepreneurial Practicum (8 MCs)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3204T", + "title": "Entrepreneurship Practicum (Short)", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "TR3201 Entrepreneurial Practicum (8 MCs)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR3301", + "title": "Summer Programme in Entrepreneurship", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 4 + ], + "preclusion": "TR5301 Summer Program in Entrepreneurship", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR4001", + "title": "Global Entrepreneurial Leadership", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR4049", + "title": "Seminars in Entrepreneurship", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.\n\nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.", + "corequisite": "Depends on the topics offered, there can be preclusion(s) on existing modules offering similar topics for example new venture creation or new product development." + }, + { + "moduleCode": "TR4049N", + "title": "Seminars in Entrepreneurship - Lean Startup: Market Validation", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.\n\nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.", + "corequisite": "Depends on the topics offered, there can be preclusion(s) on existing modules offering similar topics for example new venture creation or new product development." + }, + { + "moduleCode": "TR4049S", + "title": "Seminars in Entrepreneurship - Lean Startup: Market Validation", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.\n\nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.", + "corequisite": "Depends on the topics offered, there can be preclusion(s) on existing modules offering similar topics for example new venture creation or new product development." + }, + { + "moduleCode": "TR4049T", + "title": "Seminars in Entrepreneurship - Lean Startup: Market Validation", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.\n\nOpen to students from FASS (Global Studies) who have completed 80 MCs with a minimum of 28 MCs in their major with a minimum CAP of 3.20 or be on the Honours track\n\nCohort 2020 onwards: Depends on the topics offered, there can be prerequisite(s) on existing modules offering similar topics for example new venture creation or new product development.", + "corequisite": "Depends on the topics offered, there can be preclusion(s) on existing modules offering similar topics for example new venture creation or new product development." + }, + { + "moduleCode": "TR4203", + "title": "Business Opportunities In ICT", + "moduleCredit": 6, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR4204", + "title": "Design & Innovation in Context", + "moduleCredit": 6, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR5049", + "title": "Lean Startup Practicum", + "moduleCredit": 12, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR5105", + "title": "Technopreneurship", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR5301", + "title": "Summer Program in Entrepreneurship", + "moduleCredit": 4, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TR5302", + "title": "Experiential Entrepreneurship Internship", + "moduleCredit": 8, + "department": "NUS Entrepreneurship Centre", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS1101E", + "title": "Introduction to Theatre and Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1003", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Exempted from NUS Qualifying English Test, or passed NUS \nQualifying English Test, or exempted from further CELC Remedial English modules.", + "corequisite": "" + }, + { + "moduleCode": "TS2217", + "title": "Introduction to Performance Studies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2221", + "title": "Global Theatres", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS2232", + "title": "Asian Theatres: Tradition and the Contemporary", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM2001", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E", + "corequisite": "" + }, + { + "moduleCode": "TS2233", + "title": "Making Contemporary Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2234", + "title": "Cultural Policy, the Arts and Society", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2235", + "title": "Marketing the Arts and Leisure Services", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2236", + "title": "Crossing Boundaries in Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2237", + "title": "As If: Actors and Acting", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2239", + "title": "Major Playwrights of the 20th Century", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or EN1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2240", + "title": "Voice Studies and Production", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2241", + "title": "Writing the Short Film", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS2242", + "title": "Intercultural Performance Practice", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2243", + "title": "Film Genres: Stars and Styles", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "GEM2026", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS2880", + "title": "Topics in Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS2880A", + "title": "Modern Drama in Asia", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3103", + "title": "Theatre Lab", + "moduleCredit": 8, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS major students who have completed a minimum of 80 MCs.", + "corequisite": "" + }, + { + "moduleCode": "TS3222", + "title": "Applied Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "TS4880B Applied Theatre", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3231", + "title": "History and Theory of Western Theatre 2", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS3232", + "title": "Performance & Social Space", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E / GEM1003 Introduction to Theatre and Performance", + "corequisite": "" + }, + { + "moduleCode": "TS3233", + "title": "Southeast Asian Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3234", + "title": "Performance and Popular Culture", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3235", + "title": "Singapore English-Language Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "SSA3201", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3236", + "title": "Theatre Ecologies", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003 or GEH1058 or GEK1055", + "corequisite": "" + }, + { + "moduleCode": "TS3237", + "title": "Acting and Directing in Asian Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3238", + "title": "Acting for the Screen", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3239", + "title": "Reading Asian Drama", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3240", + "title": "Theatre Criticism", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3241", + "title": "Modern Drama", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3267", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "So long as students have fulfilled EN1101E/GEK1000, they may take this EN level-3000 module in the same semester as they are taking one of the following modules (EN2201, EN2202, EN2203, EN2204, EN2205, EN2207)." + }, + { + "moduleCode": "TS3242", + "title": "Intercultural Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3243", + "title": "Stage and Screen", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS3244", + "title": "Voice and Text", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E", + "corequisite": "" + }, + { + "moduleCode": "TS3245", + "title": "Professional Theatre Internship", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E. Only for TS Major students who are in or going into their third year.", + "corequisite": "" + }, + { + "moduleCode": "TS3246", + "title": "Shakespeare and Asian Performances", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003 or EN1101E or GEK1000", + "corequisite": "" + }, + { + "moduleCode": "TS3247", + "title": "Digital Archiving and Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E or GEM1003", + "corequisite": "" + }, + { + "moduleCode": "TS3248", + "title": "Theatre and Orientalism", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E Introduction to Theatre and Performance", + "corequisite": "" + }, + { + "moduleCode": "TS3551", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must:\nhave declared a Major, completed a minimum of 24 MCs in that Major, and have a CAP of at least 3.20.", + "corequisite": "" + }, + { + "moduleCode": "TS3880", + "title": "Topics in Group Practice Research", + "moduleCredit": 8, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TS1101E", + "corequisite": "" + }, + { + "moduleCode": "TS4212", + "title": "Playwriting: Practice and Production", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EN3271", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4214", + "title": "Arts and the Law", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4216", + "title": "Theatre and Gender", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4217", + "title": "Cultural Performance in Asia", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in TS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4218", + "title": "Theatre and Postmodernism", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4219", + "title": "Media and Popular Performance", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in TS or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4220", + "title": "Shakespeare and Film", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2019 and before: Completed 80 MCs, including 28 MCs in TS or 28 MCs in EN or 28 MCs in EU/LA (French/ German/Spanish)/recognised modules or 28 MCs in GL/GL recognised non-language modules, with a minimum CAP of 3.20 or be on the Honours track.\n\nCohort 2020 onwards: Completed 80 MCs, including 28 MCs in TS or 28 MCs in EN or 28 MCs in EU/LA (French/ German/Spanish)/recognised modules, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4221", + "title": "Performance Research", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4222", + "title": "Performance as Research in Applied Theatre", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4222A", + "title": "Performance as Research in Applied Theatre", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4401", + "title": "Honours Thesis", + "moduleCredit": 15, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "TS4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 and before:\nCompleted 110 MCs, including 60 MCs of TS major requirements with a minimum CAP of 3.50.\n\nCohort 2013-2015:\nCompleted 110 MCs including 60 MCs of TS major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of TS major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "TS4660", + "title": "Independent Study", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "TS4401", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015:\nCompleted 100 MCs, including 60 MCs in TS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nCompleted 100 MCs, including 44 MCs in TS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "TS4880", + "title": "Topics in Theatre", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS4880C", + "title": "Contemporary Performance Practices", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed 80 MCs, including 28 MCs in TS, with a minimum CAP of 3.20 or be on the Honours track.", + "corequisite": "" + }, + { + "moduleCode": "TS5101", + "title": "Text and Performance", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TS5101R", + "title": "Text and Performance", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "TS5212", + "title": "Asian International Cinema", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "TS5212R", + "title": "Asian International Cinema", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "TS5213", + "title": "Performing Shakespeare in Asia", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "TS5213R", + "title": "Performing Shakespeare in Asia", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate student in the university or with the approval of the Department.", + "corequisite": "" + }, + { + "moduleCode": "TS5232", + "title": "Performance, History and Cultural Memory", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "TS5232R", + "title": "Performance, History and Cultural Memory", + "moduleCredit": 5, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "TS5660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Must be registered as a Graduate Student in the University or with the approval of the Department", + "corequisite": "" + }, + { + "moduleCode": "TS6660", + "title": "Independent Study", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the PhD programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instruction", + "corequisite": "" + }, + { + "moduleCode": "TS6770", + "title": "Graduate Research Seminar", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the Ph.D. programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "TS6880", + "title": "Advanced Topics in Theatre", + "moduleCredit": 4, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Admission to the Ph.D. programme or doctoral competence in the discipline to be determined by the Department upon recommendation by the instructor.", + "corequisite": "" + }, + { + "moduleCode": "TSC3100", + "title": "Supply Chain Design", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "TIE2100 Probability Models with Applications,\nTIE2110 Operations Research I,\nTIE2140 Engineering Economy", + "corequisite": "" + }, + { + "moduleCode": "TSC3222", + "title": "Global Sourcing & Supply Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2110", + "corequisite": "" + }, + { + "moduleCode": "TSC3223", + "title": "Supply Chain Financial Analysis and Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2140 Engineering Economy", + "corequisite": "" + }, + { + "moduleCode": "TSC3224", + "title": "Distribution & Warehousing", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2110 Operations Research I", + "corequisite": "" + }, + { + "moduleCode": "TSC3226", + "title": "Transportation Management", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2110", + "corequisite": "" + }, + { + "moduleCode": "TSC4101", + "title": "B. Tech Dissertation", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "B. Tech (SCM) 4th year standing", + "corequisite": "" + }, + { + "moduleCode": "TSC4225", + "title": "Port Logistics", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "TIE2110 Operations Research I", + "corequisite": "" + }, + { + "moduleCode": "TTG1401", + "title": "Engineering Mathematics I", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2 + ], + "preclusion": "TE2102 or TM1401 or TG1401", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TTG2415", + "title": "Ethics In Engineering", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 3 + ], + "preclusion": "TG2415", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TTG2901", + "title": "Communications for Engineering Professionals", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Completed at least 40MCs of programme requirements excluding APC.", + "corequisite": "" + }, + { + "moduleCode": "TTG3001", + "title": "Industrial Practice", + "moduleCredit": 12, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TG3002, TTG3002, TG3001, TIC3901", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 76MC of modules, including Advanced Placement Credits", + "corequisite": "" + }, + { + "moduleCode": "TTG3002", + "title": "Industrial Practice", + "moduleCredit": 8, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [ + 1, + 2, + 3 + ], + "preclusion": "TG3001, TTG3001, TG3002, TIC3901", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 76MC of modules, including Advanced Placement Credits", + "corequisite": "" + }, + { + "moduleCode": "TTG3101A", + "title": "Independent Study", + "moduleCredit": 2, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TG3101A", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing and approval from Dean of SCALE", + "corequisite": "" + }, + { + "moduleCode": "TTG3101B", + "title": "Independent Study", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "TG3101B", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Level 3 standing and approval from Dean of SCALE", + "corequisite": "" + }, + { + "moduleCode": "TX1901T", + "title": "Essential 1 for BTech Students", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TX1902T", + "title": "Essential 2 for BTech Students", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TX1903T", + "title": "Essential 3 for BTech Students", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TX1904T", + "title": "Essential 4 for BTech Students", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "TX1905T", + "title": "Essential 5 for BTech Students", + "moduleCredit": 4, + "department": "SCALE Dean's Office", + "faculty": "Cont and Lifelong Education", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UAI3100E", + "title": "Overseas ISM (ST)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UAI4000E", + "title": "Overseas Exchange Module", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UAR2201", + "title": "Cyberart", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UAR2206", + "title": "Creating 'Reality'", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UAR2207", + "title": "Reinventing Intercultural Exchanges", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. \nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "" + }, + { + "moduleCode": "UAR2208", + "title": "From Lab to Stage: Writing the Science Play", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Pre-requisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UBM2201", + "title": "Hormesis and Life", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UBM2202", + "title": "Creating Wolverine in Real Life", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UBZ3001", + "title": "Conflict Resolution: Negotiation And Mediation", + "moduleCredit": 4, + "department": "Management and Organisation", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UCQ3101E", + "title": "History & culture basket (level 3000) 1", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UCQ3201E", + "title": "Society & Economy basket (level 3000) 1", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UCV2207", + "title": "Politics of Heritage : Singapore and the Region", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UCV2209", + "title": "The Heterogeneous Indians of Contemporary Singapore", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5221", + "title": "Theory and Elements of Urban Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5521", + "title": "Planning Process: Quantitative & Policy Dimensions", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5601", + "title": "Urban Design Studio 1", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5602", + "title": "Urban Studio Design 2", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5622", + "title": "Methods Of Urban Design & Urban Analysis", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5624", + "title": "Special Topics In Urban Design", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5628", + "title": "Sustainable Urban Design and Development", + "moduleCredit": 4, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UD5641", + "title": "Dissertation", + "moduleCredit": 8, + "department": "Architecture", + "faculty": "Design and Environment", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2204", + "title": "Virtue And Leadership", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2206", + "title": "Leadership in a Complex World", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2207", + "title": "Language, Cognition, and Culture", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2208", + "title": "Immigration and the City", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. \nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UHB2209", + "title": "Polycentric Governance: Possibilities and Pitfalls", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2210", + "title": "Emotion in Daily Life", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UHB2211", + "title": "Welcome to the Anthropocene: Agency in the Era of Climate Change", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2212", + "title": "Singaporean Nostalgia", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2213", + "title": "Engaging and Building Communities", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "This module would be cross listed by the new Chua Thian Poh Community Leadership Centre (CTPCLC) (module code CTP2101). A USP + CTPCLC student would be encouraged to take this module through the USP. Students that have taken UHB2213 will be precluded from CTP2101 and vice versa.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UHB2214", + "title": "Effective Decision Making", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS2921R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS2922R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS2923R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS2924R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS2951R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS2952R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3901", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3901S", + "title": "Independent Study Module (ST)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3902", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3902S", + "title": "Independent Study Module (ST)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3903", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3903S", + "title": "Independent Study Module (ST)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3904R", + "title": "Independent Study Module (Ride On)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911AX", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911CH", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911CL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911EC", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911EL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911EN", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911EU", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911GE", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911GL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911HY", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911JS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911MS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911NM", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911PE", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911PH", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911PL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911PS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911SC", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911SE", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911SN", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911SW", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3911TS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912AX", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912CH", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912CL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912EC", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912EL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912EN", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912EU", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912GE", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912GL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912HY", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912JS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912MS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912NM", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912PE", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912PH", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912PL", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912PS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912SC", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912SE", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912SN", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912SW", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3912TS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3913", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3913R", + "title": "Course-Based Module (Riding-On Regular Module)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3914R", + "title": "Course-Based Module (Riding-On Regular Module)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3915EN", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3915HY", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3915PH", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3915PS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3915R", + "title": "Course-based Module (Ride-on)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3916EN", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3916HY", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3916PH", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3916PS", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3921", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3921R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3922", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3922R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3923", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3923R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3924", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3924R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3929R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 8, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3931", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3932", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3933", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3934", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3941", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3941R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3942", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3942R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3943", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3943R", + "title": "Independent Study Module (Ride On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3944", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS3944R", + "title": "Independent Study Module (Ride On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3951CS", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 5, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3951R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "[CS2103 Software Engineering and CS2309 CS Research Methodology]\nor\nIS2103 Enterprise Systems Development Concepts\nor\nIS2150 E-Business Design and Implementation", + "corequisite": "" + }, + { + "moduleCode": "UIS3952CS", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 5, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3952R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CP3208/UIS3951R Undergraduate Research in Computing I", + "corequisite": "" + }, + { + "moduleCode": "UIS3953R", + "title": "Independent Project", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS3102 Enterprise Systems Development Project or\nIS4102 E-Business Capstone Project or CS3201 Software Engineering Project I\nor CS3281 Thematic Systems Project I or CS4201 Interactive Systems Project I or\nCS4203 Game Development Project I", + "corequisite": "" + }, + { + "moduleCode": "UIS3954R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 8, + "department": "Information Systems and Analytics", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IS2101 Business and Technical Communication\nAND\nIS2103 Enterprise Systems Development Concepts", + "corequisite": "" + }, + { + "moduleCode": "UIS3955R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 8, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3956R", + "title": "Independent Study Module (Ride-on)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3957R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "Computer Science", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3958R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS3971R", + "title": "Independent Study Module (Ride-on)", + "moduleCredit": 6, + "department": "Computing and Engineering Programme", + "faculty": "Multi Disciplinary Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4904R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4911", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in the major, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in the major, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in the major, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911AX", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911CH", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in CH or CL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911CL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in CH or CL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911EC", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EC, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EC, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EC, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911EL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911EN", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911EU", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EU, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EU, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EU, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911GE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GE, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in GE, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911GL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in GL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911HY", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in HY, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911JS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in JS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in JS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in JS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911MS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in MS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in MS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in MS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911NM", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in NM, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in NM, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in NM, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PEE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PEP", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PES", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PH", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PH, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911PS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4911SC", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SC, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911SE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SE, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911SN", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SN, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911SW", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SW, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SW, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SW, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4911TS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in TS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in TS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in TS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in the major, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in the major, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in the major, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912AX", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912CH", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in CH, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912CL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH or CL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in CH or CL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912EC", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EC, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EC, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EC, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912EL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912EN", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912EU", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EU, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EU, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EU, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912GE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GE, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in GE, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912GL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in GL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in GL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912HY", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in HY, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912JS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in JS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in JS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in JS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912MS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in MS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in MS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in MS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912NM", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in NM, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in NM, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in NM, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PEE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PEP", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PES", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PH", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PH, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PL", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PL, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PL, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PL, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912PS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4912SC", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SC, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912SE", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SE, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912SN", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SN, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912SW", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SW, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SW, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SW, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4912TS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in TS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in TS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in TS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4913", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in the major, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in the major, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in the major, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4913R", + "title": "Course-based Module (Ride-on)", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4914R", + "title": "Course-based Module (Ride-on)", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4915EN", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4915HY", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in HY, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4915PH", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PH, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4915PS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4915R", + "title": "Course-based Module (Ride-on)", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4916EN", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in EN, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in EN, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4916HY", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in HY, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in HY, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4916PH", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PH, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4916PS", + "title": "Independent Study Module", + "moduleCredit": 5, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in PS, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in PS, with a minimum CAP of 3.20.", + "corequisite": "" + }, + { + "moduleCode": "UIS4921", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4921R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4922", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4922R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4923", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4923R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4924", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4924R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4931", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4932", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4933", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4934", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4935R", + "title": "Independent Study Module (Ride-on)", + "moduleCredit": 8, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4941", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4941R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4942", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4942R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4943", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4943R", + "title": "Independent Study Module (Ride On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4944", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS4944R", + "title": "Independent Study Module (Ride On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4945", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4946", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4947", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4951R", + "title": "Independent Study Module (Ride-on)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4952R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS4953R", + "title": "Independent Study Module (Ride-on)", + "moduleCredit": 8, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5921R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5922R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5923R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5924R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5931R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5932R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5933R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5934R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5941", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS5941R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5942", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS5942R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5943", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS5943R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5944", + "title": "Independent Study Module", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "USP Student", + "corequisite": "" + }, + { + "moduleCode": "UIS5944R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS5951R", + "title": "Independent Study Module (Ride-on)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "CS1231 or CS3234", + "corequisite": "" + }, + { + "moduleCode": "UIS6922R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS6931R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS6942R", + "title": "Independent Study Module (Ride On)", + "moduleCredit": 4, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIS6951R", + "title": "Independent Study Module (Ride-On)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "Computing", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIT2201", + "title": "Computer Science & The I.T. Revolution", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIT2205", + "title": "Quantum computation", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIT2206", + "title": "The Importance of Being Formal", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "" + }, + { + "moduleCode": "UIT2207", + "title": "Computational Thinking and Modelling", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIT2208", + "title": "Thinking 4.0", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UIT2209", + "title": "AI Projects and Case Studies", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "CS3243 Introduction to Artificial Intelligence \nCS3244 Machine Learning", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2201", + "title": "The Biomolecular Revolution", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2202", + "title": "Evolution", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2204", + "title": "Biodiversity And Conservation Biology", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2205", + "title": "Biosemiotics: Signs In Nature", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2206", + "title": "The Doors of Perception: Biology, Technology & Culture", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2207", + "title": "The Biology and Phenomenology of Pain", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2208", + "title": "Biodiversity and Natural History in Singapore", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULS2209", + "title": "Multidisciplinary Inquiries Into The Mystery Of ‘Mind’", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "UWC2101R Writing & Critical Thinking: Multidisciplinary Perspectives on “Mind”", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULT2298D", + "title": "Representing War", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULT2299A", + "title": "Understanding Irony", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Precludes other modules from the ULT2299(x) \"Topics in Lit. 2\" series.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULT2299C", + "title": "Topics in Lit. 2: The Subject of Reading", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules / USP Advanced Multidisciplinary Seminars) may state general pre-requisite skills/knowledge. Pre-requisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "ULT2299D", + "title": "The Politics of Language and Literacy in Singapore", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.\nUSP Advanced modules (Course-Based Modules, CBMs)\nmay state general pre-requisite skills/knowledge. Prerequisites\nshould not make reference to NUS modules.", + "corequisite": "Not applicable to USP First-Tier modules." + }, + { + "moduleCode": "ULT2299E", + "title": "Appealing Arguments: Logos, Pathos, and Ethos", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. \nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "ULT2299F", + "title": "Close Reading and Its Vicissitudes", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ULT2299G", + "title": "The Modern History of Southeast Asia through Fiction", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UNL2201", + "title": "Space, Time & Matter: The Shape and Size of the Cosmos", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UNL2205", + "title": "Waves in Nature", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UNL2206", + "title": "Nature's Threads", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UNL2207", + "title": "The Nature of Natural Law", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UNL2208", + "title": "Complexity and Recursion", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UNL2209", + "title": "Quantum Reality and Appearance", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UNL2210", + "title": "Mathematics and Reality", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPC2201", + "title": "Chemicals And Us", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPC2206", + "title": "Nanoscale Science And Technology", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPC2207", + "title": "The Technology of Life - Machines That Go Squish", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UPC2208", + "title": "Molecular Courtship", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UPC2209", + "title": "Pollution Control Engineering in Singapore", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPC2210", + "title": "Energy in Singapore: Is Technology the Answer?", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPC2211", + "title": "Re-examining the Deterministic World of Matter", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPI2205", + "title": "Ethics And The Environment", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPI2206", + "title": "Creative Thinking", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UPI2207", + "title": "Ethics and Aesthetics: The Moral Value of Representational Art", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UPI2208", + "title": "Imagining Animals", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UPI2209", + "title": "Creation of Value", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UPI2210", + "title": "Arts of Memory: Public Recollection & Memory Training", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPI2211", + "title": "Utopia: Ideal Places from Plato to the Smart City", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "Not applicable", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable", + "corequisite": "Not applicable" + }, + { + "moduleCode": "UPI2212", + "title": "Technologies of the Self: from Socrates to Self-Help", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UPI2213", + "title": "Making Sense of Colonial Ideology and Its Legacies", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UQF2101E", + "title": "Quantitative Reasoning Foundation: Quantifying Our Eco-Footprint", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UQF2101F", + "title": "Quantitative Reasoning Foundation: Calculating Risks", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.\nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UQF2101G", + "title": "Quantitative Reasoning Foundation: Quantifying Nuclear Risks", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "Not applicable to USP First-Tier modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP First-Tier modules." + }, + { + "moduleCode": "UQF2101H", + "title": "Quantitative Reasoning Foundation: War and Democracy", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UQF2101I", + "title": "Quantitative Reasoning Foundation: Quantifying Environmental Quality", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UQF2101J", + "title": "Quantitative Reasoning Foundation: Pursuit of Happiness", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "UTC1409 Jr Seminar: Pursuit of Happiness, offered by College of Alice and Peter Tan (CAPT)", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UQF2101K", + "title": "Quantitative Reasoning Foundation: In Search of Soulmate", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UQR2207", + "title": "Decision Analytics", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UQR2211", + "title": "Passing Time: Processes, Temporality, and Econometrics", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "UQF2101% modules", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UQR2212", + "title": "How Linguists Work", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UQR2214", + "title": "Generative Syntax", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UQR2215", + "title": "Developing Meaningful Indicators", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "URM3301", + "title": "USP Undergraduate Research Opportunity", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "URM3302", + "title": "USP Undergraduate Research Opportunity (S&T-based UROP)", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USC3001", + "title": "Complexity", + "moduleCredit": 4, + "department": "Physics", + "faculty": "Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2209", + "title": "Globalizing Asian-Pacific Identities", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2304", + "title": "Singapore: The Making Of A Nation", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2306", + "title": "Disasters and Responses", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.\nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "" + }, + { + "moduleCode": "USE2308", + "title": "New Media and Politics", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "" + }, + { + "moduleCode": "USE2309", + "title": "Ordinary Politics", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "" + }, + { + "moduleCode": "USE2310", + "title": "Questioning Sustainable Development", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.\nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "USE2311", + "title": "Archives, Biography, Memory in Singapore", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2312", + "title": "Nationalism and the Arts", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "Precludes other modules from the ULT2298(x) \"Topics in Lit. 1\" series.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2313", + "title": "Understanding Law and Social Change", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Second-year and above", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "USE2314", + "title": "Politics and Emotion", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.\nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP First-Tier modules." + }, + { + "moduleCode": "USE2315", + "title": "Participatory Social Development in Southeast Asia", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2316", + "title": "Satires and (Un)Serious Histories", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. \nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "" + }, + { + "moduleCode": "USE2317", + "title": "Multiculturalism in Singapore and Its Contested Meanings", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. \nUSP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Pre-requisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "USE2318", + "title": "Managing Cultural Difference:Theorizing the S’pore Model", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites should not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "USE2319", + "title": "Social Movements, Law, and Society", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2320", + "title": "Transitional Justice and War Crimes Trials: Case Studies from Singapore and Asia", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2321", + "title": "Examining Local Lives", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2322", + "title": "Situating Singapore in the Wider World", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2323", + "title": "Culture and Technology", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2324", + "title": "Gender and Ecology in Asia", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USE2325", + "title": "Democracy and Inequality", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USP2201", + "title": "Food Production and Society in Southeast Asia", + "moduleCredit": 2, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USP2202", + "title": "Power, Identity, and Citizenship in Democratic Athens", + "moduleCredit": 2, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USP3501", + "title": "The Problematic Concept Of 'Gender'", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USP3505", + "title": "Asianism and Singapore", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USP3506", + "title": "Religious Issues in the Contemporary World", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USP3508", + "title": "The Politics of the Body", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "" + }, + { + "moduleCode": "USP3509", + "title": "Law and Violence", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules. USP Advanced modules (Course-Based Modules, CBMs) may state general pre-requisite skills/knowledge. Prerequisites\nshould not make reference to NUS modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "USP3510", + "title": "Reason, Secularization & Multiculturalism", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "USR4002A", + "title": "Critical Reflection", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Open to students in years 3 and above", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "USS2105", + "title": "University Scholars Seminar", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102", + "title": "Junior Seminar", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102B", + "title": "Junior Seminar: The Darwinian Revolution", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM1902% or GEM1912% or UTC11% or GEM1536 or GET1020", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102C", + "title": "Junior Seminar: Fakes", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102D", + "title": "Junior Seminar: Images", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102E", + "title": "Junior Seminar: Social Innovation", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102F", + "title": "Junior Seminar: Leadership: Technology, Configuration, Work", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102G", + "title": "Junior Seminar: Proof: What’s Truth got to do with it?", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102H", + "title": "Junior Seminar: C.S.I. 101: Truth from evidence", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102M", + "title": "Junior Seminar: On Blindness", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102N", + "title": "Junior Seminar: The Bio‐tech Future: Sci‐Fi Film and Society", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102P", + "title": "Junior Seminar: Murals: Expressions from/on the Walls", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102R", + "title": "Junior Seminar: Green Capitalism: A Critical Engagement", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102S", + "title": "Living and Dying in the Internet Age", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102T", + "title": "Junior Seminar: Art and Social Change", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102U", + "title": "Junior Seminar: Disasters", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1102V", + "title": "Junior Seminar: Ways of Knowing: Poetry and Science", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1112A", + "title": "Jr Sem Special Topics: Humanising Technology", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1112B", + "title": "Jr Sem Special Topics: Quality Journalism and Critical Reading", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1112C", + "title": "Special Topics Junior Seminar: Dissecting the Justice Machine", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1112D", + "title": "Leadership, Creativity and Innovation", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1112F", + "title": "Special Topics Junior Seminar: Science Fiction Movies in the East and West", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1112G", + "title": "Special Topics: “Sustainability – An Introduction”", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1113", + "title": "Junior Seminar: Ignorance and Uncertainty", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1114", + "title": "Junior Seminar From the Fire to the Frying Pan: Cooking and Eating in Human Culture(s)", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1115", + "title": "Junior Seminar Engineering Marvels", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1116", + "title": "Writing Women", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1117", + "title": "Junior Seminar: Radiation and Society", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM1902% or GEM1912% or UTC11% or UTC2110 or GEM2910%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1118", + "title": "Junior Seminar: The Social Lives of Drugs", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(For Tembusu students only)", + "corequisite": "" + }, + { + "moduleCode": "UTC1119", + "title": "Junior Seminar: Crime and Punishment", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1120", + "title": "Junior Seminar: Emotions and Society", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1121", + "title": "Technology, Horror, and the Unknown", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1122", + "title": "Skin", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1902% or GEM1912% or UTC11%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1400", + "title": "Debating Singapore's Social and Economic History", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1402", + "title": "Jr Sem: Generation Y: Transitions to Adulthood", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1035", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1403", + "title": "Jr Sem: Hidden Communities", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1904", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1404", + "title": "Jr Sem: Power and Ideas", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM1905", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1408", + "title": "Jr Sem: Technology and Human Progress", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1909", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1409", + "title": "Jr Sem: The Pursuit of Happiness", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1910\nUQF2101J", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1410", + "title": "Jr Sem: Special Topics", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1911", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1411", + "title": "Jnr Sem: Systems Systems Everywhere", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914, GEM1915%, GEM1918, GEM1919,GET1011, UTC1700, UTC1701", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1413", + "title": "Jr Sem: A Brief History of Inequality", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1414", + "title": "Jr Sem: Discovering Singapore’s Natural History and Heritage", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1415", + "title": "Jr Sem: Family in a Changing Singapore", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1416", + "title": "Jr Sem: Games, Game Communities and Society", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTC14%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1417", + "title": "Jr Sem: Bioethics in the 21st Century", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "All other Junior Seminars.\nUTC14%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1418", + "title": "Jr Sem: Chances in Life", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "All other UTCP Junior Seminars\nUTC11%, UTC14%, UTC17%", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1700", + "title": "Thinking in Systems: Ecosystems and Natural Resources", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1701", + "title": "Thinking in Systems: Diseases and Healthcare", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702", + "title": "Thinking in Systems", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702A", + "title": "Thinking in Systems: Ecosystems and Natural Resources", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702B", + "title": "Thinking in Systems: Diseases and Healthcare", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702C", + "title": "Thinking in Systems: Sustainability and Us", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702D", + "title": "Thinking in Systems: Population Dynamics", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702E", + "title": "Thinking in Systems: Energy Systems", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC1702F", + "title": "Thinking in Systems: Disaster Resilience", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM1914 or GEM1915% or GEM1918 or GEM1919 or GET1011 or UTC1411 or UTC1702% or UTC1701 or UTC1700", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2100", + "title": "Humans, Animals and Ecosystems: The One Health Paradigm", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This programme is open to students from participating IARU universities and Tembusu College’s partner colleges. NUS undergraduates should have a minimum CAP of 3.0 on a 5- point scale. Non-NUS students will be assessed based on recruitment criteria and procedures administered by each participating residential college/university in consultation with NUS Tembusu College.", + "corequisite": "" + }, + { + "moduleCode": "UTC2101", + "title": "Time and Life", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2102", + "title": "Climate Change", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2105", + "title": "Singapore as ‘Model’ City?", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21% or UTS2105 or SSU2004%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2107", + "title": "Senior Seminar: Negotiating in a Complex World", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2108", + "title": "Knowledge and Expertise", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2109", + "title": "Asia Now! The Archaeology of the Future City", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "SSU2000% or SSU2004% or SSU2006% or UTS21% or UTC2109 or GEM2909%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This programme is open to students from participating IARU universities and Tembusu College’s partner colleges.\n\nNUS undergraduates should have a minimum CAP of 3.0 on a 5‐point scale. Non‐NUS students will be assessed based on recruitment criteria and procedures administered by each participating residential college/university in consultation with NUS Tembusu College.\n\nStudents need to have interest in urban Asia, but there is no requirement to have prior background in Asia, Asian Studies, or Asian languages. Ideally, students in this class will be in their second or third year of a four‐year undergraduate program, but in general we will accept undergraduates at any level.\n\nFor Tembusu students - GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2111", + "title": "Picturing and Seeing Development", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2112", + "title": "Animals and the City", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTS2112 or GEM29% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This four-week intensive module is intended only to be offered in the summer term.\n\nEnrolment will be offered to a select group of students, half of them from our IARU and Tembusu College partner residential colleges/university, and the others from NUS. NUS students may take this module as an unrestricted elective. Tembusu College students may take this module to count towards the University Town College Programme (as a Senior Seminar).\n\nNUS undergraduates, including Tembusu students, should have a minimum CAP of 3.0 on a 5-point scale. Non-NUS students will be assessed based on recruitment criteria and procedures administered by each participating residential college/university in consultation with NUS Tembusu College. Non-NUS students will have to apply to their home institutions for credit.\n\nIdeally, students in this class will be in their second or third year of a four-year undergraduate program, but in general we will accept undergraduates at any level.\n\nFor Tembusu students - GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2113", + "title": "Gaming Life", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2902% or GEM2905% or GEM2907% or GEM2908% or GEM2909% or GEM2910% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTC2400", + "title": "Community Leadership", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "GEM2903%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2402", + "title": "Environment and Civil Society in Singapore", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2906%\nSSU2005%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2403", + "title": "Citizenship in a Changing World", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2028%\nSSU2007%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2404", + "title": "(Re)Building Communities: Insights from India", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2405", + "title": "Emerging Asia: Successes and Challenges", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2406", + "title": "Cities and nature", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2407", + "title": "Work and Inequality", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2408", + "title": "Beyond Seeing: Looking at Art", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2409", + "title": "Understanding Communities: Theory & Practice", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2410", + "title": "Building Communities: Exploring Global Connections", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC24%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "UTC14% or UTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTC2410A", + "title": "Reconstructing Communities: Insights from the Balkans", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2, + 3 + ], + "preclusion": "UTC24%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "UTC14% or UTW1001%\nPriority will be given to UTCP students resident in CAPT, who need to take a senior seminar to complete UTCP", + "corequisite": "" + }, + { + "moduleCode": "UTC2410B", + "title": "Community, Culture, Conservation: Insights from Nepal", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "UTC11%, UTC14%, UTC17% (UTCP Junior Seminar)", + "corequisite": "" + }, + { + "moduleCode": "UTC2411", + "title": "Unequal Parenthoods in Asia", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2412", + "title": "Mental wellness: Local and global approaches", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC2501", + "title": "Community Internship", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "For FASS, FOE, FOS, SOC, SDE students:\nCFG1002 Career Catalyst is preferred\n\nFor Business School students:\nEither Business Finishing School (BFS) or Career Creation Starter Workshops (STR) modules is preferred\nhttp://bba.nus.edu/images/bba/docs/2018/Internship-Guidelines-for-Students.pdf\n\nFor Music, Dentistry, Nursing, Medicine, Law students:\n- approved on case-by-case basis", + "corequisite": "" + }, + { + "moduleCode": "UTC2700", + "title": "An Undefeated Mind: An Experiential Inner Reengineering Approach", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2701", + "title": "Business Systems: Dynamics and Policy Making", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2702", + "title": "Foundations in System Dynamics Thinking and Modelling", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2703", + "title": "Infectious Diseases: Dynamics, Strategies and Policies", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2704", + "title": "Projects in Systems Thinking and System Dynamics", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2705", + "title": "Housing, Healthcare and Harmony in Singapore: A Critical Perspective", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTS2700 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2706", + "title": "Committed to Changing Our World: The Systems Pioneers", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTC27% or GEM2911%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2707", + "title": "Understanding Health and Social Care in Singapore", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTS2701 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2708", + "title": "Singapore - A Smart Nation in Context : IoT & Big Data", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTS2702 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2709", + "title": "Questioning Common Sense", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2710", + "title": "Energy and Environment: Singapore and ASEAN Perspectives", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTS2703 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2711", + "title": "Heavenly Mathematics and Cultural Astronomy", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2712", + "title": "Hard to secure easy to waste - Singapore’s food story", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTS2704 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2713", + "title": "Modelling Singlehood, Marriage & Fertility in Singapore", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTS2705 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2714", + "title": "A social critique of markets in Singapore", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTS2706 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2715", + "title": "Decoding Complexity", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTS2707 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2716", + "title": "Networks: Complexity and Order", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2717", + "title": "Navigation in Singapore Waters-Bridges and Barriers", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTS2708 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2718", + "title": "Energy and Singapore: Dynamics, Dilemmas and Decisions", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "UTS2709 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2719", + "title": "Society and Economy in Singapore: A Systems View", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTS2710 or UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC2720", + "title": "Income Inequality: A Teleological Perspective", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTC3101", + "title": "Independent Study", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM3900", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Ideally, a student should have completed the University Town\nCollege Programme of five modules before pursuing Independent Study.\nHowever, due to the diverse student population at Tembusu, the\nprerequisite is that students should have completed at least one Senior\nSeminar. This ensures that a student has gained some familiarity\nwith the exploration of topics in an inter‐disciplinary, multi‐disciplinary\nor trans‐disciplinary fashion. The student should approach a College\nFellow to work out an agreed topic, readings, and assignments for the\nmodule. Part of this conversation should be to specify in what sense\nthe topic and/or approach are interdisciplinary, multi‐disciplinary\nor trans‐disciplinary in character. A formal ISM contract is to be\nsubmitted to the Director of Studies for approval. Evaluation is based on\n100% Continuous Assessment and must be worked out between the\nstudent and the supervisor prior to seeking the College’s approval. In\nthe course of the semester, between 4 and 6 meetings between student\nand supervisor are expected. The student is expected to play an active\nrole in setting the agenda and preparing for these meetings.", + "corequisite": "" + }, + { + "moduleCode": "UTC3102", + "title": "Tembusu Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM3901", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "Ideally, a student should have completed the University Town Residential Programme of five modules before embarking on this UROP. \n\nHowever, due to the diverse student population at Tembusu, this is not always possible, and some exceptional students may want the chance to embark on a Tembusu UROP already in their second year. The prerequisite is that students should have completed at least one Junior or Senior Seminar at the College, as well as at least one Ideas and Exposition module or a faculty-based writing course.\n\nFor student-candidates who meet the prerequisite but who have not finished the five-module UTCP, the prospective supervisor/research leader is required to make a case to the UROP coordinator and/or the Director of Studies. The case should be based on (1) an evaluation of the student’s demonstrated aptitude and motivation for independent research and inquiry, and (2) the student’s demonstrated potential for producing high-quality academic writing.", + "corequisite": "" + }, + { + "moduleCode": "UTC3400", + "title": "Independent Study", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM3902", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTC3401", + "title": "CAPT Undergraduate Research Opportunity (UROP)", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM3903", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + true + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2100", + "title": "Intelligence and Singapore Society", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "SSU2000% or SSU2004% or SSU2006% or UTS21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTS2101", + "title": "Biomedicine and Singapore Society", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "SSU2000% or SSU2004% or SSU2006% or UTS21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTS2105", + "title": "Singapore as ‘Model’ City?", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "SSU2000% or SSU2004% or SSU2006% or UTS21% or UTC2105 or GEM2905%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTS2109", + "title": "Asia Now! The Archaeology of the Future City", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "SSU2000% or SSU2004% or SSU2006% or UTS21% or UTC2109 or GEM2909%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This programme is open to students from participating IARU universities and Tembusu College’s partner colleges.\n\nNUS undergraduates should have a minimum CAP of 3.0 on a 5‐point scale. Non‐NUS students will be assessed based on recruitment criteria and procedures administered by each participating residential college/university in consultation with NUS Tembusu College.\n\nStudents need to have interest in urban Asia, but there is no requirement to have prior background in Asia, Asian Studies, or Asian languages. Ideally, students in this class will be in their second or third year of a four‐year undergraduate program, but in general we will accept undergraduates at any level.\n\nFor Tembusu students - GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTS2112", + "title": "Animals and the City", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "GEM29% or UTC21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "This four-week intensive module is intended only to be offered in the summer term.\n\nEnrolment will be offered to a select group of students, half of them from our IARU and Tembusu College partner residential colleges/university, and the others from NUS. NUS students may take this module as an unrestricted elective. Tembusu College students may take this module to count towards the University Town College Programme (as a Senior Seminar).\n\nNUS undergraduates, including Tembusu students, should have a minimum CAP of 3.0 on a 5-point scale. Non-NUS students will be assessed based on recruitment criteria and procedures administered by each participating residential college/university in consultation with NUS Tembusu College. Non-NUS students will have to apply to their home institutions for credit.\n\nIdeally, students in this class will be in their second or third year of a four-year undergraduate program, but in general we will accept undergraduates at any level.\n\nFor Tembusu students - GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTS2114", + "title": "Technologies and Ageing in Singapore", + "moduleCredit": 4, + "department": "Tembusu College", + "faculty": "Residential College", + "semester": [], + "preclusion": "SSU2000% or SSU2004% or SSU2006% or UTS21%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1902% or GEM1912% or UTC11%", + "corequisite": "" + }, + { + "moduleCode": "UTS2400", + "title": "Identities in Asia", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "SSU2002%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2402", + "title": "Environment and Civil Society in Singapore", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2906%\nSSU2005%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2403", + "title": "Citizenship in a Changing World", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "GEM2028%\nSSU2007%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2404", + "title": "Cities and nature", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2405", + "title": "Work and Inequality", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2406", + "title": "Beyond Seeing: Looking at Art", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2407", + "title": "Understanding Communities: Theory & Practice", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2408", + "title": "Unequal Parenthoods in Asia", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2409", + "title": "Mental wellness: Local and global approaches", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2500", + "title": "College 3 Capstone Experience", + "moduleCredit": 4, + "department": "College of Alice and Peter Tan", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "SSU2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UTS2700", + "title": "Housing, Healthcare and Harmony in Singapore: A Critical Perspective", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC2705 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2701", + "title": "Understanding Health and Social Care in Singapore", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTC2707 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2702", + "title": "Singapore - A Smart Nation in Context : IoT & Big Data", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTC2708 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2703", + "title": "Energy and Environment: Singapore and ASEAN Perspectives", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC2710 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2704", + "title": "Hard to secure easy to waste - Singapore’s food story", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [], + "preclusion": "UTC2712 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2705", + "title": "Modelling Singlehood, Marriage & Fertility in Singapore", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTC2713 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2706", + "title": "A social critique of markets in Singapore", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTC2714 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2707", + "title": "Decoding Complexity", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTC2715 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2708", + "title": "Navigation in Singapore Waters-Bridges and Barriers", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1 + ], + "preclusion": "UTC2717 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2709", + "title": "Energy and Singapore: Dynamics, Dilemmas and Decisions", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 2 + ], + "preclusion": "UTC2718 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTS2710", + "title": "Society and Economy in Singapore: A Systems View", + "moduleCredit": 4, + "department": "Residential College 4", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "UTC2719 or UTS27%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "GEM1918 or GEM1919 or UTC1700 or UTC1701 or UTC1702%", + "corequisite": "" + }, + { + "moduleCode": "UTW1001A", + "title": "Identities and Ideas in Modern Market-Driven Societies", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have already read a IEM1201, UTW1001 and ES1501 module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules", + "corequisite": "" + }, + { + "moduleCode": "UTW1001B", + "title": "What is a nation? Texts, images and national identity", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "Students who have already read a IEM1201%, UTW1001% and ES1501% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules", + "corequisite": "" + }, + { + "moduleCode": "UTW1001C", + "title": "At the Edges of the Law: Ethics, Morality and Society", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have already read a IEM1201%, UTW1001% and ES1501 module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules", + "corequisite": "" + }, + { + "moduleCode": "UTW1001D", + "title": "Self, Society, and the Digital Tsunami era", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have already read a IEM1201% , UTW1001% and ES1501% module; have previously taken or are currently taking NM1101E/X Communications, New Media and Society", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules", + "corequisite": "" + }, + { + "moduleCode": "UTW1001E", + "title": "From Human to 'Posthuman'", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have already read a WP2201 or IEM module, ES1201G, ES1201L, ES1501% (namely ES1501A, ES1501B and ES1501C) modules.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001F", + "title": "The Internationalisation of Higher Education: Impact and Challenges", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have already read a IEM1201%, UTW1001% and ES1501% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001G", + "title": "Human Behaviours: How do 'I' fit in this Social World?", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have already read a WP2201%, IEM1201%, ES1201G, ES1201L, UTW1001% or ES1501% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001H", + "title": "Eating Right(s): The Politics of Food", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001J", + "title": "Prizes and Popular Culture", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001K", + "title": "Photography and Society", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001L", + "title": "From Kodak to Instagram: How Images Tell Lies", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001M", + "title": "Sport and competition", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001N", + "title": "Public Persona and Self-presentations", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001P", + "title": "Heroes", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001Q", + "title": "English, Singlish and intercultural communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001R", + "title": "Oratory and the Public Mind", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001S", + "title": "Women in Film", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001T", + "title": "Ideology and Popular Culture in Singapore", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001U", + "title": "The Detective", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM1201%,\nUTW1001%,\nES1501%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying\nEnglish Test (QET) or have passed CELC English for Academic\nPurposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001W", + "title": "The Online Politician: The Use of Social Media in Political Communication", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "Students who have already read a IEM1201%, UTW1001% and ES1501% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW1001Y", + "title": "Algorithmic Culture and its Discontents", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "Students who have already read a IEM1201%, UTW1001% and ES1501% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules", + "corequisite": "" + }, + { + "moduleCode": "UTW1001Z", + "title": "Colour: Theory, meaning and practice", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "Students who have already read a IEM1201%, UTW1001% and ES1501% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have passed/been exempted from the NUS Qualifying English Test (QET) or have passed CELC English for Academic Purposes modules.", + "corequisite": "" + }, + { + "moduleCode": "UTW2001E", + "title": "Ethics in Outer Space", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "Students who have already read an I&E II module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "I&E I", + "corequisite": "" + }, + { + "moduleCode": "UTW2001H", + "title": "RISK and Popular Culture", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 2 + ], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001J", + "title": "Blood, Death and Desire, Interpreting the Vampire", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001K", + "title": "Public Memory, Identity and Rhetoric", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001L", + "title": "Visualizing Southeast Asian Cities", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001M", + "title": "Sport and Socialization", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001P", + "title": "Science Fiction and Empire", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001Q", + "title": "'What's in a word?' Meaning across cultures", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "(i)\tUSP students may read any I&E module, but not in lieu of a Writing and Critical Thinking module.\n(ii)\tStudents who have already read an I&E II module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "I&E I", + "corequisite": "" + }, + { + "moduleCode": "UTW2001R", + "title": "Discourse, Citizenship, and Society", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1, + 2 + ], + "preclusion": "Students who have already read an I&E 2 module", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "I&E 1", + "corequisite": "" + }, + { + "moduleCode": "UTW2001S", + "title": "Masculinities on Film", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001T", + "title": "Nobodiness: The Self as Story", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [], + "preclusion": "IEM2201%,\nUTW2001%", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "IEM1201%,\nUTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001W", + "title": "Alter ego / authentic self? Online political identities", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have already read an UTW2001% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "UTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UTW2001Z", + "title": "The Semiotics of Colour", + "moduleCredit": 4, + "department": "Center for Engl Lang Comms", + "faculty": "NUS", + "semester": [ + 1 + ], + "preclusion": "Students who have already read an UTW2001% module.", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "UTW1001%", + "corequisite": "" + }, + { + "moduleCode": "UWC2101A", + "title": "Writing and Critical Thinking: Colonialism and Cosmopolitanism", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101AA", + "title": "Writing & Critical Thinking: Religion in Public Life", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101AB", + "title": "Writing and Critical Thinking: What is Wisdom?", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101B", + "title": "Writing and Critical Thinking: Civic Discourse in a Fractious World", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101C", + "title": "Writing and Critical Thinking Module: Monuments, Memorials, and Commemoration", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "" + }, + { + "moduleCode": "UWC2101D", + "title": "Writing and Critical Thinking: Narrative in Everyday Life", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UWC2101F", + "title": "Writing and Critical Thinking: Human Trafficking and Labour Migration", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101G", + "title": "Writing & Critical Thinking: Apocalyptic Cultures", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UWC2101H", + "title": "Writing & Critical Thinking: Power, Space and Pleasure", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101I", + "title": "Writing & Critical Thinking: Interpreting Consumerism", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101J", + "title": "Writing & Critical Thinking: Sites of Tourism", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101L", + "title": "Writing and Critical Thinking: Conditions of Happiness", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "UTC1409: Jr Seminar: Pursuit of Happiness", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP modules.", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UWC2101N", + "title": "Writing & Critical Thinking: Clothing Identities", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101R", + "title": "Writing & Critical Thinking: Multidisciplinary Perspectives on 'Mind'", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101S", + "title": "Writing & Critical Thinking: Danger and National Security", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101U", + "title": "Writing & Critical Thinking: Technologies of Home", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "UWC2101V", + "title": "Writing & Critical Thinking: Language, Culture and 'Natives' People", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules.", + "corequisite": "" + }, + { + "moduleCode": "UWC2101Y", + "title": "Writing and Critical Thinking: Issues in and Around Justice", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1 + ], + "preclusion": "Not applicable to USP modules.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Not applicable to USP First-Tier modules", + "corequisite": "Not applicable to USP modules." + }, + { + "moduleCode": "UWC2101Z", + "title": "Writing & Critical Thinking: Vice, the State & Society", + "moduleCredit": 4, + "department": "University Scholars Programme", + "faculty": "University Scholars Programme", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "VM5101", + "title": "Introduction of Palliative Care", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "VM5102", + "title": "Symptom Management in Palliative Care I", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "VM5103", + "title": "Symptom Management in Palliative Care II", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "VM5104", + "title": "Psychiatry, Psychosocial Care & Spiritual Issues in Palliative Care", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "VM5105", + "title": "Communication and Ethical Issues", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "VM5106", + "title": "Practices of Palliative Medicine", + "moduleCredit": 4, + "department": "Division of Graduate Medical Studies", + "faculty": "Yong Loo Lin Sch of Medicine", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "WR1401", + "title": "Workplace Readiness", + "moduleCredit": 0, + "department": "Ridge View Residential College", + "faculty": "Residential College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "XD2102", + "title": "Health and Social Sciences", + "moduleCredit": 4, + "department": "FASS Dean's Office/Office of Programmes", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "XD1101", + "corequisite": "" + }, + { + "moduleCode": "XD3103", + "title": "Planet Earth", + "moduleCredit": 4, + "department": "Geography", + "faculty": "Arts and Social Science", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "XFA4401", + "title": "Integrated Honours Project", + "moduleCredit": 16, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\n(1) Completed 110 MCs including 60 MCs of EC major requirements with a minimum SJAP of 4.00 and CAP of 3.50\n(2) Passed EC4301/EC4101 or EC4302/EC4102.\n\nCohort 2012-2015:\nCompleted 110 MCs including 60 MCs of EC major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of EC major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "XFA4402", + "title": "Integrated Honours Thesis", + "moduleCredit": 15, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "EC4660", + "attributes": [ + false, + false, + false, + false, + true, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\n(1) Completed 110 MCs including 60 MCs of EC major requirements with a minimum SJAP of 4.00 and CAP of 3.50\n(2) Passed EC4301/EC4101 or EC4302/EC4102.\n\nCohort 2012-2015:\nCompleted 110 MCs including 60 MCs of EC major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of EC major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "XFA4403", + "title": "Integrated Honours Thesis", + "moduleCredit": 15, + "department": "Communications and New Media", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "NM4660 Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2011 and before:\n(1) Be in the CNM-Business Double Degree\n(2) Completed 110 MCs, including 60 MCs of NM major requirements with a minimum SJAP of 4.00 and CAP of 3.50.\n(3) Passed NM4102\n\nCohort 2012-2015:\n(1) Be in the CNM-Business Double Degree\n(2) Completed 110 MCs, including 60 MCs of NM major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n(3) Passed NM4102\n\nCohort 2016 onwards:\n(1) Be in the CNM-Business Double Degree\n(2) Completed 110 MCs, including 44 MCs of NM major requirements with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n(3) Passed NM4102", + "corequisite": "" + }, + { + "moduleCode": "XFA4404", + "title": "Integrated Honours Thesis", + "moduleCredit": 15, + "department": "English Language and Literature", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EL4660 Independent Study", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012 and before:\nCompleted 110 MCs, including 60 MCs of EL major requirements with a minimum CAP of 3.50.\n\nCohort 2013‐2015:\nCompleted 110 MCs including 60 MCs of EL major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP\npre‐requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards:\nCompleted 110 MCs including 44 MCs of EL major requirements with a minimum SJAP of 4.00 and CAP of 3.50, or with recommendation by the programme committee. Students may seek a waiver of the SJAP\npre‐requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "XFA4405", + "title": "Integrated Honours Thesis", + "moduleCredit": 15, + "department": "Psychology", + "faculty": "Arts and Social Science", + "semester": [ + 1, + 2 + ], + "preclusion": "PL4660", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2015 and before: Completed 110 MCs, including 60 MCs of PL major requirements, with a minimum CAP of 3.50. \n\nCohorts 2016 and 2017: Completed 110 MCs, including 44 MCs of PL major requirements, with a minimum CAP of 3.50. \n\nCohort 2018 onwards: Completed 110 MCs, including 44 MCs of PL major requirements, with a minimum SJAP of 4.00 and CAP of 3.50. Students may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "XFA4406", + "title": "Integrated Honours Thesis", + "moduleCredit": 15, + "department": "Economics", + "faculty": "Arts and Social Science", + "semester": [], + "preclusion": "EC4401, EC4660", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Cohort 2012-2015\n(1) Completed 110 MCs including 60 MCs of EC major requirements (or be on the Honours Track)\n(2) Minimum SJAP of 4.00 and CAP of 3.50 \nStudents may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.\n\nCohort 2016 onwards\n(1) Completed 110 MCs including 44 MCs of EC major requirements (or be on the Honours Track)\n(2) Minimum SJAP of 4.00 and CAP of 3.50\nStudents may seek a waiver of the SJAP pre-requisite from the department if they have a minimum CAP of 4.25 after completing 110 MCs.", + "corequisite": "" + }, + { + "moduleCode": "XFB4001", + "title": "Integrated Honours Thesis", + "moduleCredit": 12, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "XFB4002", + "title": "Integrated Honours Dissertation", + "moduleCredit": 15, + "department": "BIZ Dean's Office", + "faculty": "NUS Business School", + "semester": [ + 1 + ], + "preclusion": "Integrated honours thesis/dissertation from other faculties", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Vary, depending on specific research topic.", + "corequisite": "Vary, depending on specific research topic." + }, + { + "moduleCode": "XFC4101", + "title": "Integrated Honours Thesis", + "moduleCredit": 12, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [ + 1, + 2 + ], + "preclusion": "CS4101 B.Comp. Dissertation or CS4349 Game Research\nProject", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Attain at least 70% of the MC requirement for the\nrespective degrees or departmental approval", + "corequisite": "" + }, + { + "moduleCode": "XFC4102", + "title": "Integrated Honours Dissertation", + "moduleCredit": 15, + "department": "SoC Dean's Office", + "faculty": "Computing", + "semester": [], + "preclusion": "CP4101, BT4101, CG4001, XFC4101 or any integrated\nhonours thesis/project/dissertation module", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Completed at least 112 MCs for the respective degree.", + "corequisite": "" + }, + { + "moduleCode": "XFE4401", + "title": "Integrated Honours Project", + "moduleCredit": 16, + "department": "FoE Dean's Office", + "faculty": "Engineering", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "XFS4199M", + "title": "Integrated Honours Project", + "moduleCredit": 15, + "department": "Mathematics", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "MA4199", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be in a double degree programme and must be reading the Bachelor of Science degree as the primary degree. Students must have met the Honours eligibility requirements for specific majors from both Faculties. Students must seek approval from both Faculties to take up this module with an agreement of a common scheme of assessment.", + "corequisite": "" + }, + { + "moduleCode": "XFS4199S", + "title": "Integrated Honours Project", + "moduleCredit": 15, + "department": "Statistics and Applied Probability", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "This module precludes XX4199 as well as XX4299 and vice versa.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be in a double degree programme and must\nbe reading the Bachelor of Science degree as the primary\ndegree. Students must have met the Honours eligibility\nrequirements for specific majors from both Faculties.\nStudents must seek approval from both Faculties to take\nup this module with an agreement of a common scheme of\nassessment.", + "corequisite": "" + }, + { + "moduleCode": "YCC1111", + "title": "Literature and Humanities 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCC1112", + "title": "Literature and Humanities 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YCC1113", + "title": "Philosophy and Political Thought 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCC1114", + "title": "Philosophy and Political Thought 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YCC1121", + "title": "Comparative Social Inquiry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCC1122", + "title": "Quantitative Reasoning", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCC1131", + "title": "Scientific Inquiry 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCC1133", + "title": "Week 7: Experiential Learning Field Trip", + "moduleCredit": 0, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCC2121", + "title": "Modern Social Thought", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1, YCC1114 Philosophy and Political Thought 2 and YCC1121 Comparative Social Inquiry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YCC2137", + "title": "Scientific Inquiry 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1131 Scientific Inquiry 1 and YCC1122 Quantitative Reasoning or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YCT1201", + "title": "Transitions - Understanding College and College Life", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YCT1202", + "title": "Dialogue: Social Issues in Intergroup Relations", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2202", + "title": "Introduction to Creative Nonfiction", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2203", + "title": "Masterpieces of Western Art: Renaissance to the Present", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2205", + "title": "Integrative Music Theory 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "MUT1201 Introduction to Classical Music Composition", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2206", + "title": "Introduction to Mathematical Logic", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2209", + "title": "Death and the Meaning of Life", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2211", + "title": "Roman Literary Cultures", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2212", + "title": "Classical Chinese", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC2202 Intermediate Chinese 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2213", + "title": "Philosophy of Law", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2215", + "title": "Drawing Methods", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2218", + "title": "Chinese Migrations to Southeast Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YHU1208 Chinese Migrations to Southeast Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2222", + "title": "Digital Narratives", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2223", + "title": "Documentary Photography", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2224", + "title": "Forms of Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2225", + "title": "Love and Friendship", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2228", + "title": "The Atlantic World", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2232", + "title": "Global Science Fiction: Their Worlds, Ourselves", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2233", + "title": "World Literature and its Discontents", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2236", + "title": "Travel Writing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2241", + "title": "Why be moral?", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2243", + "title": "Shakespeare & the Shape of Life: Intro to the Plays", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2244", + "title": "History and Philosophy of the Scientific Revolution", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2247", + "title": "Dystopian Fiction", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2248", + "title": "Visual Storytelling", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2249", + "title": "Poetry, Painting and Photography", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2252", + "title": "Ancient Greek Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2256", + "title": "Literary Genres: Ancient Epic and Gangster Film", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2260", + "title": "Late 20th Century French Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2267", + "title": "Modern Art in East Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2268", + "title": "Money", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2269", + "title": "Ethics and Politics of Sex", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2270", + "title": "Contemporary Egalitarianism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2272", + "title": "Writing Love: The Love Letter in Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2277", + "title": "Postcolonial Literatures: An Introduction", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2278", + "title": "Music Performance Elective: Introduction to Voice", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2279", + "title": "Philosophy as a Way of Life", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2280", + "title": "Oppression and Injustice", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2282", + "title": "Consciousness", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2286", + "title": "Daily Themes", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Entrance to this module requires submission of a writing sample of not more than 3,000 words total. This can contain essays (personal and/or academic), poems, stories, a play or a mix of genres.", + "corequisite": "" + }, + { + "moduleCode": "YHU2287", + "title": "Neo-Confucianism and Chinese Buddhism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2288", + "title": "Queer Fictions", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2290", + "title": "History and Culture of Southeast Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU1202 History and Culture of Southeast Asia", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2291", + "title": "Introduction to Arts", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YHU1209 Introduction to Arts", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2292", + "title": "Introduction to Writing Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU1210 Introduction to Writing Poetry", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2293", + "title": "Introduction to Fiction Writing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU1212 Introduction to Fiction Writing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2294", + "title": "Mean Streets: The Detective and the City", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2295", + "title": "The Global Short Story", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "EN4880C The Short Story as a Global Form", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2296", + "title": "Ancient Epics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2297", + "title": "Classical Chinese Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2300", + "title": "Exhibitions and the Sites of Display", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2302", + "title": "Realism and Naturalism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2303", + "title": "The Aesthetics of Fear: Horror & the Philosophy of Art", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2304", + "title": "Global Histories of Slavery", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "First Semester Common Curriculum modules only:\nYCC1111 Literature and Humanities 1 and\nYCC1113 Philosophy and Political Thought 1 and\nYCC1122 Quantitative Reasoning and\nYCC1121 Comparative Social Inquiry", + "corequisite": "" + }, + { + "moduleCode": "YHU2305", + "title": "Bad Love in 20C Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YHU2307", + "title": "History of Crises: Europe's 20th Century", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2308", + "title": "Introduction to Vocal Technique and Performance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2309", + "title": "Medieval Romance: Magic and the Supernatural", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2310", + "title": "A Reporters Toolbox: The Practice of Daily Journalism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with permission of the instructor.", + "corequisite": "YCC1112 Literature and Humanities 2 and YCC1114 Philosophy and Political Thought 2; or with permission of the instructor." + }, + { + "moduleCode": "YHU2311", + "title": "Girlfriends: Narratives of Friendship", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU2288 Queer Fictions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 1; or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2312", + "title": "Literatures of the Islamic World", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2313", + "title": "Introduction to the Philosophy of Art", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2314", + "title": "Rome from City State to Empire", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules and YCC2121 Modern Social Thought; or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2315", + "title": "Classical Indian Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2316", + "title": "Narrative Ethics: Stories and Self-Improvement", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2317", + "title": "Sculpting Movement: Artist in Residence (AIR) Special Project", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2318", + "title": "State and Society in the Ancient Near East", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU2319", + "title": "Beginning Acting for the Stage", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU2320", + "title": "Foundations of Environmental Humanities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YID2208 Foundations of Environmental Humanities", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3201", + "title": "Drawing Process", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3205", + "title": "Ming Imperial Voyages", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3210", + "title": "Proseminar in Literary Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3210A", + "title": "Proseminar in Literary Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "Previous iterations of YHU3210 Proseminar in Literary Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3210B", + "title": "Proseminar in Literary Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "Previous iterations of YHU3210 Proseminar in Literary Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3210C", + "title": "Proseminar in Literary Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "Previous iterations of YHU3210 Proseminar in Literary Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3210D", + "title": "Proseminar Lit Studies: How to Do Things with Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "Previous iterations of YHU3210 Proseminar in Literary Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3210E", + "title": "Proseminar in Literary Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "Previous iterations of YHU3210 Proseminar in Literary Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3210F", + "title": "Proseminar in Literary Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "Previous iterations of the YHU3210 Proseminar in Literary Studies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3211", + "title": "Chinese Tales of the Strange", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2212 Introduction to Classical Chinese or A‐level Chinese Proficiency or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3212", + "title": "Kant", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3214", + "title": "Indian Buddhist Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3216", + "title": "Photojournalism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3217", + "title": "Forms of Nonfiction: Literary Journalism from Print to Sound", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3221", + "title": "Nietzsche: An Untimely Thinker and His Times", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3222", + "title": "Ovid the Innovator", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3224", + "title": "Warring States China Intellectual and Political History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3225", + "title": "Pompeii: Art, Urban Life & Culture in the Roman Empire", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3230", + "title": "The First Opium War, 1839‐42", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3234", + "title": "Metaphysics of Human Nature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3238", + "title": "Empire, Slavery and the Making of the Americas", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3239", + "title": "Kazimir Malevich and the Black Square", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3240", + "title": "The Russo-Japanese War of 1904-5", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3243", + "title": "Woolf, Historiography, and the Scene of the Modern", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3244", + "title": "Writing Pedagogy and Practice", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Entrance into this module requires submission of a cover letter stating your interest in the course, an academic writing sample (3-5 pages double spaced). Students also have the option of submitting a creative writing sample, although this is not required. In your cover letter, include your class standing, residential college, and past writing courses taken.", + "corequisite": "" + }, + { + "moduleCode": "YHU3245", + "title": "Aristotle", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3246", + "title": "Novel Evidence:19th-Century British Fiction and the Law", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2", + "corequisite": "" + }, + { + "moduleCode": "YHU3247", + "title": "The Afropolitans: Contemporary African Lit. & Film", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3248", + "title": "Food and Ethics in Roman Literature and Culture", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3252", + "title": "The Roman Emperor Nero: Sex, Stage and Scandal", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3254", + "title": "From Edo to Modern City: Tokyo", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3259", + "title": "World Religious Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature & Humanities 1 and YCC1113 Philosophy & Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3260", + "title": "Heretics and Deviants: Writing, Rebellion, and Islam", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3261", + "title": "Analogical Reasoning and Metaphor", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3263", + "title": "The Bandung Conference of 1955", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3265", + "title": "Philosophy of Religion", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3266", + "title": "Democratic Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YHU2245 Democratic Theory", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3267", + "title": "Classical Indian Philosophy of Language", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU2251 Classical Indian Philosophy of Language", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3268", + "title": "The Japanese Empire in Global History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One 2000 or 3000 level History module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3270", + "title": "English Women Novelists: Austen and her Predecessors", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "EN4226 English Women Novelists 1800-1900 and EN3228 Women Novelists: 1750-1800.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3271", + "title": "Love in Antiquity: Eros in Translation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and one literature elective or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3272", + "title": "Literary Activism: Texts, Aesthetics, & Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3274", + "title": "Painting the Orient", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3275", + "title": "Descartes and the Perfection of Human Knowledge", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3276", + "title": "The Historian’s Craft", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU2217 The Historian’s Craft", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3281", + "title": "English Women Novelists: the Brontës to George Eliot", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "EN4226 English Women Novelists 1800-1900", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3282", + "title": "Equiano's Slave Narrative: Texts & Contexts", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3283", + "title": "Reality", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed one philosophy elective.", + "corequisite": "" + }, + { + "moduleCode": "YHU3284", + "title": "Postcolonial Literatures Today", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3285", + "title": "Rebellion and Revolution in Vietnamese History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YHU3226 Modern Vietnamese History and Literature", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3286", + "title": "Living & Dying as Japanese in WWII Anime and Drama", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3288", + "title": "Installation Art", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3289", + "title": "Beyond China: Sinophone Literature, Film, and Culture", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3290", + "title": "Dante’s Divine Comedy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YHU2230 Dante and the European Middle Ages", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3291", + "title": "Sacrifice, Sex, and Power in Medieval Kashmir", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3292", + "title": "Life Drawing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YHU4213 Life Drawing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3293", + "title": "Japanese Woodblock Prints", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YHU1211 Japanese Woodblock Prints", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3294", + "title": "Socrates on Trial", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3295", + "title": "Nasty Girls: Gender, Sexuality & Race in Early America", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3296", + "title": "Fiction and the Supernatural", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3297", + "title": "Debate and Reasoning in Indian Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 YCC1114 Philosophy and Political Thought 2 and one Philosophy module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3299", + "title": "Sex, Decadence and Decay: Weimar Berlin (1918-33)", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed first year Common Curriculum module requirements.", + "corequisite": "" + }, + { + "moduleCode": "YHU3300", + "title": "1917: War and Revolution", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3302", + "title": "Latin American Realities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3306", + "title": "Philippine Literature: American Period", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3310", + "title": "Global Modernisms", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and\nYCC1112 Literature and Humanities 2 or\nwith the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YHU3311", + "title": "Ancient Tragedy: Gender, Politics, and Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and\nYCC1112 Literature and Humanities 2 or\nwith the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YHU3312", + "title": "Hollywood in the 1930s", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3313", + "title": "The Amarna Letters: Diplomacy in the Late Bronze Age", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3314", + "title": "1989: The End of the Cold War", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3315", + "title": "Gospels as Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and at least one non-Common Curriculum Humanities module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3316", + "title": "Singapore under Japanese Occupation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3317", + "title": "The Words and World of Lu Xun", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3318", + "title": "Sexuality in Modern Europe and Its Empires", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YHU3319", + "title": "Disability and the Arts", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3320", + "title": "Vasubandhu", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3321", + "title": "British Comic Fiction: The 20th Century", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3322", + "title": "Crazy Rich Europeans: Wealth & Power in Modern History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YHU4239 The Age of Capital: Business, Elites and Power in 19th and 20th Century Europe", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3323", + "title": "Model Operas and the Chinese Cultural Revolution", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3324", + "title": "Advanced Latin: Catullus", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YLL3201 Advanced Latin: Catullus", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLL2201 Intermediate Latin or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3325", + "title": "Advanced Latin: Catiline in the Roman Elite Imagination", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YLL3202 Advanced Latin: Catiline in the Roman Elite Imagination", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLL2201 Intermediate Latin or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3327", + "title": "Social Practice Art", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2291 Introduction to Arts or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3328", + "title": "Contemporary Korean Cinema and the Colonial Past", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3329", + "title": "Advanced Latin: Ovid’s Metamorphoses", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLL2201 Intermediate Latin or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3330", + "title": "Hinduism, Nationalism, and the Bhagavad Gita in the 20th Century", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and Year 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3331", + "title": "Refining Vocal Technique and Performance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1113 Philosophy and Political Thought 1 and YHU2278 Music Performance Elective: Introduction to Voice or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3332", + "title": "Poetry in/and/of the World", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 Common Curriculum modules and at one 2000 level Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3333", + "title": "The Arab Defeat of 1967 and its Aesthetic Afterlives", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3334", + "title": "Mexican Revolutionary Aesthetics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and \nYCC1112 Literature and Humanities 2 or \nwith the permission of instructor", + "corequisite": "" + }, + { + "moduleCode": "YHU3335", + "title": "Phenomenology and Existentialism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2; or with the permission of the Instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3336", + "title": "Goodbye Mao: China's Post Socialist Transformations", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3337", + "title": "Money and the Rise of the State", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3338", + "title": "Confronting the Holocaust in Text, Film and Music", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and one Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3339", + "title": "Rome in Antiquity", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3340", + "title": "The Bacchae of Euripides", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU3341", + "title": "Postcolonial Art", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One 2000 level Arts and Humanities module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3342", + "title": "Integrative Music Theory 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2205 Integrative Music Theory 1 or with the permission frof the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU3343", + "title": "Another World is Possible: Ecotopian Visions", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YID3203 Another World is Possible: Ecotopian Visions", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or YID2208 Foundations of Environmental Humanities strongly recommended but not required.", + "corequisite": "YID1201 Introduction to Environmental Studies or YID2208 Foundations of Environmental Humanities strongly recommended but not required." + }, + { + "moduleCode": "YHU3345", + "title": "Death, Mourning and Memory in Medieval Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4101", + "title": "History Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4102", + "title": "Literature Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4103", + "title": "Philosophy Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4104", + "title": "Arts and Humanities Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4206", + "title": "The History of History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU4207", + "title": "Critical Approaches to Art History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules and at least one 1000 or 2000 level Art History module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4212", + "title": "The Problem of Evil from the Enlightenment to Auschwitz", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4214", + "title": "Advanced Creative Nonfiction", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YHU3206 Advanced Creative Nonfiction", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2202 Introduction to Creative Nonfiction or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4215", + "title": "Advanced Fiction Writing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2293 Introduction to Fiction Writing or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4216", + "title": "Advanced Poetry Writing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2292 Introduction to Writing Poetry or with the permission of the instructor.\nEntrance into this course requires submission of a portfolio of poems.", + "corequisite": "" + }, + { + "moduleCode": "YHU4217", + "title": "Novel Evidence:19th-Century British Fiction and the Law", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4218", + "title": "Chinese Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2212 Classical Chinese or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4219", + "title": "Doing Things with Words", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Two Philosophy modules other than YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4220", + "title": "The Political Philosophy of Spinoza", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YHU3233 The Political Philosophy of Spinoza", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1114 Philosophy and Political Thought 2 and YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4222", + "title": "The Historiography of Sima Qian", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor. For Year 3 onwards.", + "corequisite": "" + }, + { + "moduleCode": "YHU4225", + "title": "Imperial Outlaws: Social Deviants in the Age of Empires", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YHU3253 Imperial Outlaws: Social Deviants in the Age of Empires", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Taken one 2000 level, one 3000 level and one 4000 level History module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4227", + "title": "Ancient Humour: Greece and Rome", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and one Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4228", + "title": "Oceanic Frameworks: Shifting Currents in Lit. Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU3210 Proseminar in Literary Studies or one Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4229", + "title": "Plato on Knowing and Being Good", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Two Philosophy modules other than YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4231", + "title": "Ancient Economies of the Mediterranean and Western Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YHU4233", + "title": "Violence, Poetry and the Arts", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules and at least one 2000 or 3000 level Arts & Humanities or Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4234", + "title": "Trauma, Loss, Exile and the Literary Imagination", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4236", + "title": "“New” Media: Inquiries into Literature & Technology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and one Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4237", + "title": "Chinese Prose", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2212 Classical Chinese or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4238", + "title": "The Female Image in Japanese Art and Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YHU3232 The Female Image in Japanese Art and Literature", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "At least one 2000 or 3000 level Art History or Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4240", + "title": "American Modernist Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and at least one 2000 and one 3000 level Literatue module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4242", + "title": "The History of the Book in East and Southeast Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YHU4243", + "title": "Art Studio Research, Experimentation and Critique", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2223 Documentary Photography or YHU3201 Drawing Process or YHU3216 Photojournalism or YHU3273 Intermediate Oil Painting or YHU3288 Installation Art or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4245", + "title": "Perception", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One Philosophy module other than YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4246", + "title": "The Population Bomb: Biopolitics & Geopolitics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Non-history majors should have already taken their HI module. \nStudents who have previously taken YHU3318: Sexuality in Modern Europe and Its Empires would be familiar with several of the issues explored.", + "corequisite": "" + }, + { + "moduleCode": "YHU4247", + "title": "Museums and Libraries as Cultural Institutions", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and at least one 3000 level History or Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4249", + "title": "The Self and Society: The Novel of Development", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU3210% Proseminar in Literary Studies or with the permission of the\ninstructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4251", + "title": "Experimental Animation and the Mechanics of Movement", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU2215 Drawing Methods or \nYHU2222 Digital Narratives or \nYHU2237 Film and Other Arts or \nYHU2248 Visual Storytelling or \nYHU2291 Introduction to Arts or \nYHU3216 Photojournalism or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4253", + "title": "The Global South Novel", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2; or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4254", + "title": "The Global Renaissance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and one Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4255", + "title": "Borges and Literary Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and YCC1112 Literature and Humanities 2 and at least one other Literature module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YHU4256", + "title": "Solidarity and Social Change", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 and at least one 3000 level Philosophy module or two 2000 level Philosophy modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID1201", + "title": "Introduction to Environmental Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "ENV1101", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID2201", + "title": "Theory and Practice of Environmental Policymaking", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID2205", + "title": "Systems Thinking and Analysis", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID2207", + "title": "Social Theory and the Environment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought and YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor." + }, + { + "moduleCode": "YID2208", + "title": "Foundations of Environmental Humanities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID2209", + "title": "Biogeophysical Systems", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor." + }, + { + "moduleCode": "YID2210", + "title": "Understanding and Building Resilience", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YID2212", + "title": "Data Science for the Environment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSS2242 Data Science for the Environment", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3202", + "title": "Special Topics in Environmental Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3202B", + "title": "Special Topics in Environmental Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3202C", + "title": "Special Topics: Data Analysis in Environmental Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3202D", + "title": "Special Topics: Climate Change and the Future of Energy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor." + }, + { + "moduleCode": "YID3202E", + "title": "Special Topics: Himalayan Diversities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3202F", + "title": "Special Topic: Ocean and Society in Southeast Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3202G", + "title": "Special Topics: Planetary Health", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3202H", + "title": "Special Topics: Asia's Edible Ocean", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3203", + "title": "Another World is Possible: Ecotopian Visions", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3205", + "title": "Global Environmental Governance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3206", + "title": "Agrarian Change and Environmental Transformations", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID2207 Social Theory and the Environment or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3207", + "title": "China’s Energy and Environmental Sustainability", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3208", + "title": "Environmental Movements: Past, Present and Future", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3209", + "title": "Climate Science and Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3210", + "title": "Energy Humanities: Culture, Energy, and the Environment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YID2202 Energy Humanities: Culture, Energy, and the Environment", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3211", + "title": "Ecological Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YID2204 Ecological Economics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor." + }, + { + "moduleCode": "YID3212", + "title": "Risk and Geohazard", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3213", + "title": "Environmental Conflict and Collaboration", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3214", + "title": "Urban Ecological Systems", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS3272 Urban Ecological Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One Environmental Studies or Urban Studies module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3215", + "title": "Sustainable Consumption", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3216", + "title": "Environment, Development and Mobilisation in Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3217", + "title": "Modelling a Dynamic World", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3218", + "title": "Singapore Biodiversity: Past, Present and Future", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "GES1021", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID3219", + "title": "Volcanos, Climate, and Society in the 19th Century", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3220", + "title": "The Ethics and Politics of Reproduction in the Age of Climate Change", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or YID2208 Foundations of Environmental Humanities or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID3221", + "title": "Wildlife Forensics and the Shark Fin Trade", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YID4101", + "title": "Environmental Studies Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID4201", + "title": "Advanced Seminar in Environmental Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or YID2201 The Theory and Practice of Environmental Policymaking or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID4201A", + "title": "Advanced Seminar in Environmental Studies: Forest Landscape Restoration", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One YID3000 or YSC3000 level module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YID4202", + "title": "Applied Environmental Research", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIL1201B", + "title": "Directed Language Study: Beginning Bangla 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIL1201I", + "title": "Directed Language Study: Beginning Italian 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIL1201S", + "title": "Directed Language Study: Beginning Sanskrit", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIL1202B", + "title": "Directed Language Study: Beginning Bangla 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YIL1201B Directed Language Study: Beginning Bangla 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YIL1202I", + "title": "Directed Language Study: Beginning Italian 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YIL1201I Directed Language Study: Beginning Italian 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YIL2201I", + "title": "Directed Language Study: Intermediate Italian 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YIL1202I Directed Language Study: Beginning Italian 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YIL2201R", + "title": "Directed Language Study: Intermediate Russian 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YIL1202R Directed Language Study: Beginning Russian 2", + "corequisite": "" + }, + { + "moduleCode": "YIL2201S", + "title": "Directed Language Study: Intermediate Sanskrit", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YIL1201S Directed Language Study: Beginning Sanskrit or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YIL3201S", + "title": "Directed Language Study: Advanced Sanskrit", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YIL2201S Directed Language Study: Intermediate Sanskrit or equivalent", + "corequisite": "" + }, + { + "moduleCode": "YIR3301", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3301G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3302", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3302G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3303", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3303G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3304", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3304G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3305", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3305G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3306", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3306G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3307", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3307G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3308", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3308G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3309", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3309G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3310", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3310G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3311", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIR3311G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIR3312", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIR3312G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIR3313", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + true, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIR3313G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YIR3314", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3314G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3315", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3315G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3316", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3316G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3317", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3317G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3318", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3318G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3319", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3319G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3320", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3320G", + "title": "Independent Reading and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Nil.\n(Consent of the Supervisor, Divisional Director, Vice Rector and Dean of Faculty)", + "corequisite": "" + }, + { + "moduleCode": "YIR3401", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3401G", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3402", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3402G", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3403", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3403G", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3404", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3404G", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3405", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR3405G", + "title": "Independent Language Study and Research", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Project proposal with consent of Faculty Supervisor, Language Coordinator, Divisional Director, Vice Rector and Dean of Faculty.", + "corequisite": "" + }, + { + "moduleCode": "YIR4301", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4301G", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4302", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4302G", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4303", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4303G", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4304", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4304G", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4305", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YIR4305G", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of the Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YLC1201", + "title": "Beginning Chinese 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YLC1202", + "title": "Beginning Chinese 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC1201 Beginning Chinese 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLC2201", + "title": "Intermediate Chinese 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC1202 Beginning Chinese 2 or passed GCE Chinese O & A Levels or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLC2202", + "title": "Intermediate Chinese 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC2201 Intermediate Chinese 1 or passed GCE Chinese O & A Levels or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLC3203", + "title": "Advanced Chinese 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC2202 Intermediate Chinese 2 or passed GCE Chinese O & A Levels or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLC3204", + "title": "Advanced Chinese 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC3203 Advanced Chinese 1 or passed GCE Chinese O & A Levels or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLC3205", + "title": "Advanced Readings in Chinese: Cinematic and Literary Texts", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YLC3201 Advanced Readings in Chinese: Cinematic and Literary Texts", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC3204 Advanced Chinese 2 or passed GCE Chinese A Levels or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLC3206", + "title": "Advanced Readings in Chinese: Modern Chinese Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YLC3202 Advanced Chinese: Readings in Modern Chinese Literature", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLC3204 Advanced Chinese 2 or passed GCE Chinese A Levels or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLG1201", + "title": "Beginning Ancient Greek", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YLG2201 Intensive Elementary Greek", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YLG2202", + "title": "Intermediate Ancient Greek", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLG1201 Beginning Ancient Greek or YLG2201 Intensive Elementary Greek or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLG3201", + "title": "Advanced Ancient Greek Prose", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLG2202 Intermediate Ancient Greek or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLG3202", + "title": "Advanced Ancient Greek Poetry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLG2202 Intermediate Ancient Greek or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLL1201", + "title": "Beginning Latin", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YLL2201", + "title": "Intermediate Latin", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YLL1202 Intermediate Latin or YLL2202 Intermediate Latin", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLL1201 Beginning Latin or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLN1201", + "title": "Beginning Singapore Sign Language", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YLN2201", + "title": "Intermediate Singapore Sign Language", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLN1201 Beginning Sign Language or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLS1201", + "title": "Beginning Spanish 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YLS1202", + "title": "Beginning Spanish 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLS1201 Beginning Spanish 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLS2201", + "title": "Intermediate Spanish 1", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLS1202 Beginning Spanish 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLS2202", + "title": "Intermediate Spanish 2", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLS2201 Intermediate Spanish 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLS3201", + "title": "Advanced Spanish: Spain, a Mosaic of Cultures", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLS2201 Intermediate Spanish 1 and YLS2202 Intermediate Spanish 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YLS3202", + "title": "Advanced Spanish: Latin America, Borders and Identities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YLS2202 Intermediate Spanish 2 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC1207", + "title": "General Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1208", + "title": "Dogs as Model Organisms", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1210A", + "title": "Modern Physics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1212", + "title": "Introduction to Computer Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasoning or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC1213", + "title": "General Physics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "PC1221, PC1222", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1216 Calculus or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC1214", + "title": "Networks", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1215", + "title": "Genetic Engineering for All: An iGEM team for Yale-NUS?", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1216", + "title": "Calculus", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "MA1102R, MA1505, MA1511, MA1521", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1217", + "title": "Creativity, Imagination and Theoretical Physics", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1218", + "title": "Molecular Perspectives", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1219", + "title": "Introduction to Black Holes", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC2223 Introduction to Black Holes", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Physics at A-level, AP or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC1220", + "title": "More is Different: Emergence in Physical Systems", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC2242 More is Different: Emergence in Physical Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC1221", + "title": "Physics of the Electric Guitar", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2202", + "title": "Biology Laboratory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2203", + "title": "Classical Mechanics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1213 General Physics and YSC1216 Calculus or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2207", + "title": "Techniques in Analytical Chemistry", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2132 Foundations of Science 2\nor\nconsent of instructor", + "corequisite": "" + }, + { + "moduleCode": "YSC2208", + "title": "Techniques in Organic Chemistry", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2132 Foundations of Science 2\nor\nconsent of instructor", + "corequisite": "Students should have taken or be concurrently taking Principles of Organic Chemistry." + }, + { + "moduleCode": "YSC2209", + "title": "Proof", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "YSC1203 Proof, MA1100", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2210", + "title": "Data Analysis and Visualization (DAVis) with R", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasoning or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2213", + "title": "Discrete Mathematics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2214", + "title": "Introduction to Optics and Imaging", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2216", + "title": "Evolutionary Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "LSM1105", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YC1122 Quantitative Reasoning and YC1131 Scientific Inquiry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2221", + "title": "Introduction to Python", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2222", + "title": "Organic Chemistry Laboratory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2224 Accelerated Organic Chemistry or with the permission of the instructor.", + "corequisite": "YSC2224 Accelerated Organic Chemistry or with the permission of the instructor." + }, + { + "moduleCode": "YSC2224", + "title": "Accelerated Organic Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC2206 Principles of Organic Chemistry", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2225", + "title": "Physical Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry and YSC1213 General Physics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2227", + "title": "C: A Language for Science and Engineering", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSC3217 Programming Operating Systems, Interfaces & eXtras", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science and YSC2221 Introduction to Python or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2229", + "title": "Introductory Data Structures and Algorithms", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC2204 Fundamentals of Programming", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science or with the permission of the\ninstructor", + "corequisite": "" + }, + { + "moduleCode": "YSC2231", + "title": "Foundations of Neuroscience", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSC2211 Neurobiology and Behaviour, LSM3215", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2232", + "title": "Linear Algebra", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "YSC3205 Linear Algebra, MA1101R, MA1508E, MA1513", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Any MCS module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2233", + "title": "Genetics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSC3201 Genetics, LSM1102", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2234", + "title": "Human Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSC1201 Human Biology, LSM2212, LSM3212", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2235", + "title": "Field Research", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2236", + "title": "Microbiomes", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2237", + "title": "Computational Methods in Physical Sciences", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry or YSC1213 General Physics or YSC1216 Calculus or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2239", + "title": "Introduction to Data Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "DSA1101", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A level Mathematics or equivalent and YCC1122 Quantitative Reasoning or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2240", + "title": "Research Tutorial in Animal Behaviour", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasoning and YCC1131 Scientific Inquiry 1 and either YSC2216 Evolutionary Biology or YSC2231 Foundations of Neuroscience or YSC3235 Animal Behaviour or YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "YSC2216 Evolutionary Biology or YSC2231 Foundations of Neuroscience or YSC3235 Animal Behaviour or YSS2201 Introduction to Pyschology or with the permission of the instructor." + }, + { + "moduleCode": "YSC2241", + "title": "Plant Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2243", + "title": "Probability", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "MA2216", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1216 Calculus or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2244", + "title": "Programming for Data Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2246", + "title": "Experimental Methods in Physical Sciences", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry or YSC1213 General Physics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2247", + "title": "Ecology and Ecosystems", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2248", + "title": "Analytical Chemistry with Laboratory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "CM3295, CM3292", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry or with the permission of the instructor.", + "corequisite": "YSC1207 General Chemistry or with the permission of the instructor." + }, + { + "moduleCode": "YSC2249", + "title": "Writing about Science, Nature and the Environment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC2250", + "title": "Research Tutorial: DNA and Urban Wildlife", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasoning and YCC1131 Scientific Inquiry 1 and YCC2137 Scientific Inquiry 2 or with the permission of the instructor.", + "corequisite": "YCC2137 Scientific Inquiry 2 or with the permission of the instructor." + }, + { + "moduleCode": "YSC2252", + "title": "Multivariable Calculus", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "MA2104, MA1507", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1216 Calculus or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC2253", + "title": "Biogeophysical Systems", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YID2209 Biogeophysical Systems", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor.", + "corequisite": "YID1201 Introduction to Environmental Studies or with the permission of instructor." + }, + { + "moduleCode": "YSC3203", + "title": "Advanced Algorithms and Data Structures", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2229 Introductory Data Structures and Algorithms or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3206", + "title": "Introduction to Real Analysis", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "MA2108, MA3110", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2209 Proof or YSC2232 Linear Algebra or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3208", + "title": "Programming Language Design and Implementation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2229 Introductory Data Structures and Algorithms or with the permission of the instructor.", + "corequisite": "YSC3232 Object-oriented Programming or with the permission of the instructor." + }, + { + "moduleCode": "YSC3209", + "title": "Quantum Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2133 Integrated Science 2 and YSC2205 Mathematical Methods in Physical Sciences or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3210", + "title": "Introduction to Quantum Mechanics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "PC2130", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2203 Classical Mechanics and YSC2205 Mathematical Methods in Physical Sciences or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3211", + "title": "Introduction to Electrodynamics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "PC2131", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2205 Mathematical Methods in Physical Sciences or YSC3240 Foundations of Applied Math or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3213", + "title": "Experimental Physics Laboratory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry or YSC1213 General Physics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3214", + "title": "Biochemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3215", + "title": "Research Seminar", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3217", + "title": "Programming Operating Systems, Interfaces & eXtras", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science or YCC2221 Introduction to Python or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3224", + "title": "Statistical Thermodynamics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC2228 Statistical Thermodynamics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1207 General Chemistry and YSC1213 General Physics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3228", + "title": "Inorganic Chemistry with Laboratory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2224 Accelerated Organic Chemistry or YSC2225 Physical Chemistry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3232", + "title": "Software Engineering", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSC3207 Principles and Tools of Software Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2221 Introduction to Python or YSC1212 Introduction to Computer Science or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3233", + "title": "Molecular Cell Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3234", + "title": "Principles of Biophysics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Sophomores can enroll with instructor’s permission. Given the physics bent of this course, it is recommended that students have taken or take concurrently some Calculus, in order to fully appreciate the content.", + "corequisite": "" + }, + { + "moduleCode": "YSC3235", + "title": "Animal Behaviour", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasoning and YCC1131 Scientific Inquiry 1 or with the permission of the instructor.", + "corequisite": "YSC2201 Introduction to Psychology or YSC2216 Evolutionary Biology or YSC2231 Foundations of Neuroscience or with the permission of the instructor." + }, + { + "moduleCode": "YSC3236", + "title": "Functional Programming and Proving", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSC3237", + "title": "Introduction to Modern Algebra", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSC3204 Group Theory and YSC3220 Rings and Fields or with the permission of the instructor, MA2202, MA3201.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2209 Proof or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3238", + "title": "Developmental Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3233 Molecular Cell Biology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3239", + "title": "Geometry and the Emergence of Perspective", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3240", + "title": "Foundations of Applied Mathematics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSC2205 Mathematical Methods in Physical Sciences", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3241", + "title": "Computational and Systems Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2233 Genetics or YSC3233 Molecular Cell Biology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3242", + "title": "Agent-Based Modelling", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3243", + "title": "Bayesian Statistics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2230 Probability and Statistics or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSC3246", + "title": "Modern Astrophysics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1213 General Physics or YSC2203 Classical Mechanics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3247", + "title": "The Genomics of Human History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC3248", + "title": "Parallel, Concurrent and Distributed Programming", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science and YSC2229 Introductory Data Structures and Algorithms or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3249", + "title": "Statistical Inference", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC1204 Statistical Inference", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2243 Probability or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3250", + "title": "Immunology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3233 Molecular Cell Biology or YSC2233 Genetics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3251", + "title": "Conservation Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "LSM2251, LSM4262", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2137 Scientific Inquiry 2 or with the permission of the instructor.", + "corequisite": "YCC2137 Scientific Inquiry 2 or with the permission of the instructor." + }, + { + "moduleCode": "YSC3252", + "title": "Statistical Computing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2243 Probability or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3253", + "title": "Coral Reef Ecology and Environmental Change", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID2209 Biogeophysical Systems or YSC2216 Evolutionary Biolog or YSC2247 Ecology and Ecosystems or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3255", + "title": "The Biology of Ageing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "LSM3217, LSM4217", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2202 Biology Laboratory or any two Life Sciences modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC3256", + "title": "Urban Ecological Systems", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS3272 Urban Ecological Systems and YID3214 Urban Ecological Systems.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One module in environmental studies or one module in urban studies or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4101", + "title": "Physical Sciences Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4102", + "title": "Life Sciences Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4103", + "title": "Maths, Computational & Statistical Sci Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4200G", + "title": "Special Project in Science", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Unusually strong preparation in science, and prior approval of the Director of\nthe Science Division.", + "corequisite": "" + }, + { + "moduleCode": "YSC4205", + "title": "Organometallic Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2224 Accelerated Organic Chemistry or YSC3228 Inorganic Chemistry with Laboratory or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4206", + "title": "Harmonic Analysis", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2209 Proof and YSC3206 Introduction to Real Analysis or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4207", + "title": "Solid State Physics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3210 Introduction to Quantum Mechanics and YSC3224 Statistical Thermodynamics or with the permission of the instructor.", + "corequisite": "YSC3213 Experimental Physics Laboratory or with the permission of the instructor." + }, + { + "moduleCode": "YSC4208", + "title": "Monte Carlo Simulations in Science and Statistics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSC4204 Statistical Computing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3216 Stochastic Processes and Models or YSC3249 Statistical Inference or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4209", + "title": "Physical Sciences Research Seminar", + "moduleCredit": 4, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + true, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "YSC4101 Physical Sciences Capstone Project or with the permission of the instructor." + }, + { + "moduleCode": "YSC4211", + "title": "Adv Topics Molecular, Cellular & Developmental Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3214 Biochemistry or YSC3233 Molecular Cell Biology or YSC3238 Developmental Biology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4211A", + "title": "Adv Topics Molecular, Cell Bio: Heredity & Epigenetics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3214 Biochemistry or YSC3233 Molecular Cell Biology or YSC3238 Developmental Biology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4211B", + "title": "Adv Topics Molecular, Cell & Developmental Bio: Stem Cells", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2233 Genetics or YSC3214 Biochemistry or YSC3233 Molecular Cell Biology or YSC3238 Developmental Biology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4211C", + "title": "Adv Topics : Computational Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "ZB4171", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3241 Computational and Systems Biology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4212", + "title": "Statistical Case Studies (with R)", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2210 Data Analysis and Visualization (DAVis) with R or YSC2230 Probability and Statistics or YSC2243 Probability or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4214", + "title": "Theory of Quantum Information and Computation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSC4216", + "title": "Machine Learning", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSC3227 Machine Learning, ST3248, ST4248", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Programming skill in Python,\nYSC1216 Calculus, YSC2232 Linear Algebra, YSC2243 Probability and YSC3249 Statistical Inference or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4217", + "title": "Mechanised Reasoning", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC1212 Introduction to Computer Science and\nYSC3236 Functional Programming and Proving or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4218", + "title": "Polymer Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2224 Accelerated Organic Chemistry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4219", + "title": "Advanced Organic Chemistry", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2224 Accelerated Organic Chemistry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4220", + "title": "Ordinary and Partial Differential Equations", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC3230 Ordinary and Partial Differential Equations", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2232 Linear Algebra and YSC3240 Foundations of Applied Mathematics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4221", + "title": "Advanced Quantum Mechanics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC3210 Introduction to Quantum Mechanics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4222", + "title": "Chaos Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2203 Classical Mechanics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4223", + "title": "Physics in Curved Spacetime", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2203 Classical Mechanics, YSC3210 Introduction to Quantum Mechanics and YSC3211 Introduction to Electrodynamics or with the permission of the instructor.", + "corequisite": "YSC3210 Introduction to Quantum Mechanics and YSC3211 Introduction to Electrodynamics or with the permission of the instructor." + }, + { + "moduleCode": "YSC4224", + "title": "Data Science Accelerator", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2239 Introduction to Data Science or with the permission of the instructor. Familiarity with Python expected.", + "corequisite": "" + }, + { + "moduleCode": "YSC4225", + "title": "Stochastic Processes and Models (SPaM)", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2243 Probability or YSC2230 Probability and Statistics; or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4226", + "title": "Advanced Methods in Cell Biology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2202 Biology Laboratory and at least one Life Science module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4227", + "title": "Computer Vision and Deep Learning", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSC3221 Computer Vision and Deep Learning", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Programming skill in Python and\nYSC1216 Calculus and YSC2232 Linear Algebra and YSC2243 Probability and YSC3249 Statistical Inference or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSC4228", + "title": "Data Science in Quantitative Finance", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2239 Introduction to Data Science or with the permission of the instructor. Familiarity with Python expected.", + "corequisite": "" + }, + { + "moduleCode": "YSC4229", + "title": "Molecular Neuroscience - Genes, Brains and Behaviour", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSC2233 Genetics or YSC3214 Biochemistry or YSC3233 Molecular Cell Biology or YSC3238 Developmental Biology or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSH2401", + "title": "Short Course: Dante's Divine Comedy", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2402", + "title": "Short Course: How to Find an Asteroid", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2403", + "title": "Short Course: Joseph Conrad and Southeast Asia", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2404", + "title": "Short Course: London and Modernity 1800 - Present", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2405", + "title": "Short Course: Reimagining Bruce Lee", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2406", + "title": "Short Course: The Evolution of Beauty", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2407", + "title": "Short Course: The Idea of Statecraft", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2408", + "title": "Short Course: The Moralities of Everyday Life", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2409", + "title": "Short Course: Democracy and Justice", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2410", + "title": "Short Course: Economic Inequality ‐ For Better or Worse", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2411", + "title": "Short Course: Hispanic American Culture", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2412", + "title": "Short Course: Franz Kafka - The Novel of Institution", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2413", + "title": "Short Course: Future of Food - Global Challenges", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2414", + "title": "Short Course: Human Spirit in Great Contemporary Novels", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2415", + "title": "Short Course: Iconic Consciousness and Material Culture", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2416", + "title": "Short Course: International Law", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2417", + "title": "Short Course: Introduction to American Politics", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2418", + "title": "Short Course: Introduction to Nanoscience", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2419", + "title": "Short Course: Leo Tolstoy's Anna Karenina", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2420", + "title": "Short Course: Randomness in Physics and Biology", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2421", + "title": "Short Course: Revolution and War ‐ The Impact of WW1", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2422", + "title": "Global History of Sexual Politics", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2423", + "title": "Hollywood and Globalization", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2424", + "title": "Black Holes Across the Cosmos", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2425", + "title": "The Globalization of Food, 1000 to the Present", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2426", + "title": "Encouraging Invention: Insights from History", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2427", + "title": "The Mathematics of Language", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2428", + "title": "Effects of Climate on Marine Ecosystems", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2429", + "title": "Viruses: The Good, The Bad and The Ugly", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2430", + "title": "Global Health: Challenges and Promises", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2431", + "title": "Public Space: Urbanism, Architecture and Public Art", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2432", + "title": "The American City: History and Architecture", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2433", + "title": "Democracy and Justice", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2434", + "title": "Introduction to Imaging Science", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2435", + "title": "The Structure of Language", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2436", + "title": "The Fugues of J.S. Bach's Well Tempered Clavier, Vol. 1", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2437", + "title": "An Introduction to American Society, Government and Law", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2438", + "title": "Introduction to Financial Markets 1", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2439", + "title": "Introduction to Financial Markets 2", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSH2438 Introduction to Financial Markets 1", + "corequisite": "" + }, + { + "moduleCode": "YSH2440", + "title": "Collaborative Music Performance: Percussion", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "No prerequisite is required, although knowledge of basic music reading skills is to be expected.", + "corequisite": "" + }, + { + "moduleCode": "YSH2441", + "title": "9th - 10th Century Baghdad", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2442", + "title": "Alternative Energy", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2443", + "title": "Reading Medieval Manuscripts", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2444", + "title": "Chamber Music Performance", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2445", + "title": "Transformations in Euclidean Geometry", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2446", + "title": "Global Environmental Governance: Pathways for Sustainable Outcomes", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2447", + "title": "From Text Mining to Mapping: Digital Humanities Methods", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2448", + "title": "Material Literacy and the Global Object", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2449", + "title": "The Bible in Its Ancient Near Eastern Setting", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2450", + "title": "U.S. Strategy and the Rise of China", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2451", + "title": "Earth Materials (Minerals) and Human Health", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2452", + "title": "The Arts of South-East Asia", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2453", + "title": "American Architecture and Urbanism", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2454", + "title": "Intro to Corporate Environmental Management & Strategy", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2455", + "title": "Mahabharata: India’s Epic of Apocalypse and Renewal", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSH2456", + "title": "International Trade, Resource Use and the Environment", + "moduleCredit": 1, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSP1201", + "title": "Global Strategy and Leadership", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS1203", + "title": "Principles of Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "A level Mathematics and Economics (or equivalent Mathematics and Economics courses).", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS1205", + "title": "Introduction to Game Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS1206", + "title": "Introduction to Comparative Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS1208", + "title": "Deviance and Conformity: An Introduction to Sociology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2201", + "title": "Introduction to Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2202", + "title": "International Relations", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2203", + "title": "Intermediate Microeconomics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Mathematics (or equivalent) or YSS1203 Principles of Economics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2208", + "title": "Ancient Greek Political Philosophy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2210", + "title": "Contemporary Social Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2211", + "title": "Econometrics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Economics and Mathematics (or equivalent) or YSS1203 Principles of Economics or YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2212", + "title": "Firms' Strategies and Market Competition", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2213", + "title": "Globalization: Past, Present and Future", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Institutions", + "corequisite": "" + }, + { + "moduleCode": "YSS2214", + "title": "Intermediate Macroeconomics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Economics and Mathematics (or equivalent) or YSS1203 Principles of Economics or YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2215", + "title": "Sociology of Religion", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2216", + "title": "Statistics and Research Methods for Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasoning and YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2217", + "title": "Political Concepts", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2218", + "title": "International Political Economy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2220", + "title": "Adelaide to Zhuhai: Cities in Comparative Perspective", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "YSS1207 Introduction to Urban Studies", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2221", + "title": "International Security", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS3210 International Security", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2223", + "title": "Religion, Ritual and Magic", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2226", + "title": "Language, Culture, Power", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS1204 Language, Culture, Power", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2227", + "title": "Introduction to Anthropology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2228", + "title": "Modern Southeast Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2229", + "title": "Are you what you eat? Anthropology of Food and Eating", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2230", + "title": "Ethnic Diversity in Japan", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2231", + "title": "The Anthropology of Politics and Law: An Introduction", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2232", + "title": "Medicine, Culture and Modernity", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2233", + "title": "Investment Analysis and Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Economics (or equivalent), or YSS1203 Principles of Economics or YSS2203 Intermediate Microeconomics or YSS2214 Intermediate Macroeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2234", + "title": "The Good Company", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2236", + "title": "Middle East Societies and Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "YSS2202 International Relations or with the permission of the instructor." + }, + { + "moduleCode": "YSS2237", + "title": "Nuclear Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2238", + "title": "Game Theory and International Relations", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS1205 Introduction to Game Theory", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Familiar with basic concepts of linear algebra and probability and statistics (Bayes’ rule) or with the permssion of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2239", + "title": "The Political Thought of the Enlightenment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS2240", + "title": "Women and Work around the World", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2241", + "title": "Contemporary Left Politics and Movements", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS2242", + "title": "Data Science for the Environment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3201", + "title": "International Migration", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3202", + "title": "Ethnography", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3203", + "title": "Behavioral Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor." + }, + { + "moduleCode": "YSS3204", + "title": "Development Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3205", + "title": "International Trade", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3206", + "title": "Law and Economics", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor", + "corequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor." + }, + { + "moduleCode": "YSS3207", + "title": "Advanced Econometrics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3208", + "title": "Advanced Microeconomics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3211", + "title": "Human Rights", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3212", + "title": "Chinese Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YSS3213", + "title": "Culture and Violence", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3214", + "title": "Abnormal Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3215", + "title": "Cognitive Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3216B", + "title": "Current Issues in Urban Studies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3217", + "title": "Urbanization in China", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3218", + "title": "Urban ASEAN: The Changing Southeast Asian City", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor." + }, + { + "moduleCode": "YSS3219", + "title": "Developmental Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3220", + "title": "Political Economy", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "YSS2211 Econometrics or with permission of the instructor." + }, + { + "moduleCode": "YSS3221", + "title": "Politics of Southeast Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3222", + "title": "Urban Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought and YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3223", + "title": "Asian Medicine, the Body and Globalization", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YSS3224", + "title": "International Finance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2214 Intermediate Macroeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3225", + "title": "Global Governance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "YSS2202 International Relations or with the permission of the instructor." + }, + { + "moduleCode": "YSS3226", + "title": "Conflict and Cooperation in East Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3227", + "title": "The Economy‐Security Nexus", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3229", + "title": "Urbanization and the Environment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3231", + "title": "Methods in the Social Sciences", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry, YCC1122 Quantitative Reasoning and YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3232", + "title": "Crime and Punishment", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3235", + "title": "Urban Spatial Representation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3236", + "title": "Foreign Policy and Diplomacy: Issues and Practice", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3237", + "title": "Gender Perspectives in Anthropology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry or with the permission of the instructor.", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YSS3238", + "title": "US Foreign Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3241", + "title": "Chinese Political Philosophy: Confucianism & its Rivals", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1113 Philosophy and Political Thought 1 and YCC1114 Philosophy and Political Thought 2 or with the permission of instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3242", + "title": "Religion and Politics in South Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3243", + "title": "Public Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3244", + "title": "Labour Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3245", + "title": "Key Debates in Urban Planning and Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3246", + "title": "Cities of the Global South", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3248", + "title": "Advanced Macroeconomics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2214 Intermediate Macroeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3249", + "title": "Human Neuroscience", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology or YSC2211 Neurobiology and Behavior or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3250", + "title": "Cityscapes and Urban Form", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3251", + "title": "Urban Political Ecology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3252", + "title": "Lab in Applying Psychology to Public Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology and YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3253", + "title": "Anthropology of Development", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3254", + "title": "Globalization on the Ground", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSS2222 Globalization on the Ground", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry or with the permission of the instructor.", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YSS3255", + "title": "International Development", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry and YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3256", + "title": "Youth Urbanism: Global Trends, Local Perspectives", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3257", + "title": "Seminar on Corporate Finance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSS3258 Early Stage Private Equity Investing", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3258", + "title": "Early Stage Private Equity Investing", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS3257 Seminar on Corporate Finance", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3259", + "title": "The Human Condition: Psychology & Health in Literature", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3260", + "title": "Community Health Assessment and Improvement", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1122 Quantitative Reasonin or YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3262", + "title": "Global Cities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2218 International Political Economy or YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or YSS2224 Introduction to Global Affairs or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3263", + "title": "Emotions and Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3264", + "title": "Bubbles, Crashes, Panics and Crises", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS1203 Principles of Economics or YSS2203 Intermediate Microeconomics or YSS2214 Intermediate Macroeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3265", + "title": "Urban Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3266", + "title": "Social and Behavioural Foundations of Health", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3267", + "title": "Lab in Cognitive Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Pyschology and YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3268", + "title": "Anthropology of China", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSS3269", + "title": "Water and Waste in Urban Environments", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3270", + "title": "Ethics and Global Affairs", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "PS3233 Political and International Ethics", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3271", + "title": "Contemporary Political Comedy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3273", + "title": "Geospatial & Demographic Methods", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3274", + "title": "Urban Singapore", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3275", + "title": "Social Life of Cities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor.", + "corequisite": "YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor." + }, + { + "moduleCode": "YSS3276", + "title": "International Political Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1114 Philosophy and Political Thought 2 or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSS3277", + "title": "The Anthropological Imagination", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSS2209 The Anthropological Imagination", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry and YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3278", + "title": "Social Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YSS2207 Introduction to Social Psychology", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3279", + "title": "Social Psychology Lab", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "YSS4201 Social Psychology Lab", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology and YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3280", + "title": "Contemporary Political Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1111 Literature and Humanities 1 and\nYCC1112 Literature and Humanities 2 or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSS3282", + "title": "Architecture and Society", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3283", + "title": "Republican Political Theory", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3284", + "title": "Healthy and Resilient Cities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studiesor YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or YSS2224 Introduction to Global Affairs or with the permission of the instructor.", + "corequisite": "YID1201 Introduction to Environmental Studiesor YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or YSS2224 Introduction to Global Affairs or with the permission of the instructor." + }, + { + "moduleCode": "YSS3285", + "title": "Organisational Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3286", + "title": "The Guru in Hinduism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3287", + "title": "Global Environmental Change: Anthropological Approaches", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3288", + "title": "Empire, Country, Corporation: The Struggle for Control", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3289", + "title": "International Organisations in World Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3290", + "title": "Culture and Reproductive Health and Medicine", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "YSS4208B Adv Topic in Anthro: Reproductive Technologies", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3291", + "title": "Economics of Globalisation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3292", + "title": "Palestinian Politics in Changing Middle East", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "YSS2202 International Relations or with the permission of the instructor." + }, + { + "moduleCode": "YSS3293", + "title": "Christianities in Cross-Cultural Perspective", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3295", + "title": "Comparative International Education", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3296", + "title": "International Trade, Resource Use and the Environment", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor", + "corequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor." + }, + { + "moduleCode": "YSS3297", + "title": "“Green” Cities and Urban Natures", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "YSSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor." + }, + { + "moduleCode": "YSS3299", + "title": "Money and Banking", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "A-level Economics (or equivalent) or YSS1203 Principles of Economics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3300", + "title": "Research Tutorial: Lab in Developmental Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology and YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "YSS3219 Developmental Psychology" + }, + { + "moduleCode": "YSS3301", + "title": "Alfred Russel Wallace and the Work of Natural History", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules; or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3302", + "title": "Colonialism and Decolonization", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3303", + "title": "Cities and Economic Development", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3304", + "title": "Port Cities: Logistics, Transnationality, Urbanization", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3305", + "title": "The Political Economy of Capitalism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry and YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3306", + "title": "Modern History of Economic Globalisation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS1203 Principles of Economics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3307", + "title": "Environmental Economics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2214 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3308", + "title": "Boulevards, Arcades and Sewers: Paris 1830-1870", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3309", + "title": "Technology and Culture", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS3310", + "title": "Populism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS3311", + "title": "Sustainable Consumption", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "YID3215 Sustainable Consumption", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YID1201 Introduction to Environmental Studies and with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4101", + "title": "Global Affairs Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4102", + "title": "Psychology Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4103", + "title": "Anthropology Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4104", + "title": "Economics Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4105", + "title": "Urban Studies Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4106", + "title": "Philosophy, Politics and Economics Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4107", + "title": "Capstone Project", + "moduleCredit": 10, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "All Year 1 and 2 Common Curriculum modules or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4202", + "title": "Goals and Motivation", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology and YSS2216 Statistics and Research Methods for Psychology and at least one 3000 level Psychology module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4205", + "title": "Chinese Foreign Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4206A", + "title": "Topics in Psychology: Moral Judgments", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "PL4235 The Psychology of Moral Judgments", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction of Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4206B", + "title": "Topics in Psychology: Love in An Age of Technology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction of Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4206C", + "title": "Topics in Psychology: The Pursuit of Happiness", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction of Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4207", + "title": "Creative Cities", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4208B", + "title": "Adv Topic in Anthro: Reproductive Technologies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YSS4209", + "title": "Signs and the State", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4210", + "title": "Critical Global Public Health", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4211", + "title": "India as a Rising Power, 1947-Present", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4213", + "title": "Community Development: In Search of the Kampung Spirit", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS3222 Urban Theory or YSS3245 Key Debates in Urban Planning and Policy or with the permission of the instructor.", + "corequisite": "YSS3222 Urban Theory or YSS3245 Key Debates in Urban Planning and Policy or with the permission of the instructor." + }, + { + "moduleCode": "YSS4215", + "title": "Sexual Economies", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought and either YSS2227 Introduction to Anthropology or YSS3202 Ethnography or YSS3277 The Anthropological Imagination or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4216", + "title": "The Anthropology of Popular Culture", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4217", + "title": "Production Networks in the Global Economy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS1203 Principles of Economics and YSS2218 International Political Economy or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4219", + "title": "Law, War, and Peace in the Middle East", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and Year 2 Common Curriculum modules and either YSS2202 International Relations or YSS2224 Introduction to Global Affairs or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4220", + "title": "Housing and Social Inequality", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought and YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4222", + "title": "Contemporary European Politics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and Year 2 Common Curriculum modules and either YSS1206 Introduction to Comparative Politics or YSS2202 International Relations or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4223", + "title": "Politics of Identity in Developing Countries", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSS3234 Politics of Identity in Developing Countries", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry and YCC1122 Quantitative Reasoning or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4224", + "title": "Political Order and One-Party Rule", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS1206 Introduction to Comparative Politics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4225", + "title": "Contemporary Continental Political Thought", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4226", + "title": "Migration Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 and Year 2 Common Curriculum modules and YSS3201 International Migration or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4227", + "title": "Topics in Applied Econometrics", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics and YSS2211 Econometrics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4228", + "title": "The Anthropology of Dreams and Sleep", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC1121 Comparative Social Inquiry and YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4229", + "title": "The Anthropology of Human Rights", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought and either YSS2227 Introduction to Anthropology or YSS3202 Ethnography or YSS3277 The Anthropological Imagination or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4230", + "title": "Psychology of Mindfulness", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology and YSS2216 Statistics and Research Methods for Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4231", + "title": "Parenting and Child Development", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "PL4880K Parenting and Child Development", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Understanding Behaviour and Cognition and YSS2216 Statistics\nand Research Methods for Psychology or with the permission of the\ninstructor", + "corequisite": "" + }, + { + "moduleCode": "YSS4232", + "title": "Advanced Topics in PPE: The Welfare State", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSS4234", + "title": "Urban Heritage: Place, Memory, Identity", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YHU3276 The Historian’s Craft or YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor.", + "corequisite": "YHU3276 The Historian’s Craft or YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or with the permission of the instructor." + }, + { + "moduleCode": "YSS4235", + "title": "Religion and the Media Turn", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4236", + "title": "Medical Anthropology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One 2000 or 3000 level Anthropology module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4237", + "title": "Conquest, Territorial Expansion and International Law", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSS4238", + "title": "Micro-Finance and Sustainable Development in Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or YSS2218 International Political Economy or YSS3225 Global Governance or YSS3254 Globalisation on the Ground or YSS3255 International Development or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4239", + "title": "Adv Seminar in Urban Studies: Transnational Urbanism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective and YSS3222 Urban Theory or with the permission of the instructor.", + "corequisite": "YSS3222 Urban Theory or with the permission of the instructor." + }, + { + "moduleCode": "YSS4240", + "title": "Advanced Clinical Psychology", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2201 Introduction to Psychology and YSS2216 Statistics and Research Methods in Psychology and YSS3214 Abnormal Psychology or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4241", + "title": "Multispecies Ethnography", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "YCC2121 Modern Social Thought or with the permission of the instructor." + }, + { + "moduleCode": "YSS4242", + "title": "Urban Ethnography of Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2227 Introduction to Anthropology or YSS3202 Ethnography or YSS3277 Anthropological Imagination or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4243", + "title": "Study of Modern Wars", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2202 International Relations or YSS2221 International Security or with the permission of the instructor.", + "corequisite": "YSS2202 International Relations or YSS2221 International Security or with the permission of the instructor." + }, + { + "moduleCode": "YSS4244", + "title": "African Atlantic Perspectives", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4245", + "title": "Anthropology of Violence", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2227 Introduction to Anthropology or YSS3202 Ethnography or YSS3277 Anthropological Imagination or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4246", + "title": "Anthropology of Education", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YCC2121 Modern Social Thought or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4247", + "title": "Transnational Urbanism", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or YSS2224 Introduction to Global Affairs or with permission of the instructor.", + "corequisite": "YSS2220 Adelaide to Zhuhai: Cities in Comparative Perspective or YSS2224 Introduction to Global Affairs or with permission of the instructor." + }, + { + "moduleCode": "YSS4248", + "title": "Conducting Qualitative Socio-Legal Research", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4249", + "title": "The Economics of Inequality", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or YSS2214 Intermediate Macroeconomics or with the permission of the instructor", + "corequisite": "" + }, + { + "moduleCode": "YSS4250", + "title": "Gender and Sexuality in South Asia", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "One 2000 or 3000 level Anthropology module or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4252", + "title": "Theory from the South: Critical Perspectives", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4253", + "title": "Ethnography as Theory and Method: Classical and Contemporary Readings", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "YSS4256", + "title": "Empirical Qualitative Analysis in Global Affairs", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "All Year 1 first semester Common Curriculum modules or with the permission of the instructor.", + "corequisite": "If students have not already successfully completed the following courses, they should be taking any 2 of the 3 modules below in tandem with this proposed module: YSS2202, YSS3255 or YSS3231 or an equivalent methods course approved by the instructor)." + }, + { + "moduleCode": "YSS4257", + "title": "Topics in the Political Economy of Public Policy", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4258", + "title": "Asset Pricing, Financial Markets & Behavioural Finance", + "moduleCredit": 5, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4259", + "title": "The Economics of Climate Change", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "YSS2203 Intermediate Microeconomics or YSS2214 Intermediate Macroeconomics or with the permission of the instructor.", + "corequisite": "" + }, + { + "moduleCode": "YSS4260", + "title": "The Economics of Inequality", + "moduleCredit": 2, + "department": "Yale-NUS College", + "faculty": "Yale-NUS College", + "semester": [ + 1 + ], + "preclusion": "YSS4249 The Economics of Inequality", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "", + "corequisite": "" + }, + { + "moduleCode": "ZB3288", + "title": "Advanced UROPS in Computational Biology I", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Passed level 1000 and 2000 essential major requirements", + "corequisite": "" + }, + { + "moduleCode": "ZB3289", + "title": "Advanced UROPS in Computational Biology II", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "ZB3288", + "corequisite": "" + }, + { + "moduleCode": "ZB3310", + "title": "Undergraduate Professional Internship Programme", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 3, + 4 + ], + "preclusion": "XX3310 modules offered in Science, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Computational Biology as first major and have completed a minimum of 32 MCs in Computational Biology major at the time of application.", + "corequisite": "" + }, + { + "moduleCode": "ZB3311", + "title": "Undergraduate Professional Internship", + "moduleCredit": 4, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2, + 3, + 4 + ], + "preclusion": "XX3311 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Computational Biology as first major and have completed a minimum of 32 MCs in Computational Biology major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "ZB3312", + "title": "Enhanced Undergraduate Professional Internship Programme", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "XX3312 modules offered in Science, where XX stands for the subject prefix for the respective major.", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, have declared Computational Biology as first major and have completed a minimum of 32 MCs in Computational Biology major at time of application.", + "corequisite": "" + }, + { + "moduleCode": "ZB3313", + "title": "Undergraduate Professional Internship Programme Extended", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "This module XX3313 Extended Undergraduate Professional Internship Programme, where XX stands for the subject prefix of the respective major", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must have completed 3 regular semesters of study, having declared Computational Biology as first major and have completed a minimum of 32 MCs in Comp Bio major at the time of application and have completed ZB3312", + "corequisite": "Students should be in their 3rd year of studies (SCI3)" + }, + { + "moduleCode": "ZB4171", + "title": "Advanced Topics in Bioinformatics", + "moduleCredit": 4, + "department": "Biological Sciences", + "faculty": "Science", + "semester": [ + 1 + ], + "preclusion": "YSC4211C", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "(CS1010S or equivalent or LSM2253) AND (LSM3241 or CS2220)", + "corequisite": "" + }, + { + "moduleCode": "ZB4199", + "title": "Honours Project in Computational Biology", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [ + 1, + 2 + ], + "preclusion": "", + "attributes": [ + false, + false, + false, + false, + true, + true, + false, + false, + false + ], + "prerequisite": "Students majoring in computational biology", + "corequisite": "" + }, + { + "moduleCode": "ZB4299", + "title": "Applied Project in Computational Biology", + "moduleCredit": 12, + "department": "FoS Dean's Office", + "faculty": "Science", + "semester": [], + "preclusion": "ZB4199", + "attributes": [ + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "prerequisite": "Students must be reading the Bachelor of Science degree and have met Honours eligibility requirements for the Major in Computational Biology", + "corequisite": "" + } +] \ No newline at end of file diff --git a/src/test/java/seedu/duke/DukeTest.java b/src/test/java/seedu/duke/PlanNus.java similarity index 84% rename from src/test/java/seedu/duke/DukeTest.java rename to src/test/java/seedu/duke/PlanNus.java index 2dda5fd651..868a1c6622 100644 --- a/src/test/java/seedu/duke/DukeTest.java +++ b/src/test/java/seedu/duke/PlanNus.java @@ -4,7 +4,8 @@ import org.junit.jupiter.api.Test; -class DukeTest { +//@@author Khenus +class PlanNus { @Test public void sampleTest() { assertTrue(true); diff --git a/src/test/java/seedu/duke/apps/academicplanner/AcademicPlannerParserTest.java b/src/test/java/seedu/duke/apps/academicplanner/AcademicPlannerParserTest.java new file mode 100644 index 0000000000..95b2bf7ba6 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/AcademicPlannerParserTest.java @@ -0,0 +1,261 @@ +package seedu.duke.apps.academicplanner; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.academicplanner.commands.AddModuleCommand; +import seedu.duke.apps.academicplanner.commands.EditModuleCommand; +import seedu.duke.apps.academicplanner.commands.RemoveModuleCommand; +import seedu.duke.apps.academicplanner.commands.PrintHelpCommand; +import seedu.duke.apps.academicplanner.commands.PrintCalenderCommand; +import seedu.duke.apps.academicplanner.commands.SearchModulesCommand; +import seedu.duke.apps.academicplanner.commands.ModuleDetailsCommand; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; + +//@@author jerroldlam +class AcademicPlannerParserTest { + private static final String ERROR_INVALID_COMMAND = "INVALID COMMAND"; + public static final String NEW_LINE = "\n"; + private static final String EXITING_CURRENT_COMMAND = "Exiting current command back to Academic Planner Main Menu."; + private static final String ERROR_IN_ACADPLAN = "Sorry, you are already in Academic Planner!"; + private static final String ERROR_NO_PARAMETER = " NO PARAMETER AFTER COMMAND"; + private static final String ERROR_HAS_PARAMETER = " NO PARAMETER ALLOWED AFTER COMMAND"; + + private Person currentPerson; + private Ui ui; + private ModuleLoader allModules; + private Storage storage; + + @BeforeEach + public void setup() { + try { + currentPerson = new Person("Bob"); + ui = new Ui(); + allModules = new ModuleLoader(); + storage = new Storage(allModules); + } catch (Exception e) { + fail(); + } + } + + @Test + void parse_emptyInput_exceptionThrown() { + try { + final String emptyInput = ""; + AcademicPlannerParser.parse(emptyInput,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals(ERROR_INVALID_COMMAND + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_randomInput_exceptionThrown() { + try { + final String randomInput = "i am a gummy bear"; + AcademicPlannerParser.parse(randomInput,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals(ERROR_INVALID_COMMAND + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_addModuleCommand_correct() { + final String input = "add cs1010"; + parseAndAssertCommandType(input,AddModuleCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_editModuleCommand_correct() { + final String input = "edit cs1010"; + parseAndAssertCommandType(input, EditModuleCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_moduleDetails_correct() { + final String input = "details cs1010"; + parseAndAssertCommandType(input,ModuleDetailsCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_addModuleCommandWithSpaces_correct() { + final String input = " add cs1010 "; + parseAndAssertCommandType(input,AddModuleCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_editModuleCommandWithSpaces_correct() { + final String input = " edit cs1010 "; + parseAndAssertCommandType(input, EditModuleCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_moduleDetailsWithSpaces_correct() { + final String input = " details cs1010 "; + parseAndAssertCommandType(input,ModuleDetailsCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_printModuleCommand_correct() { + final String input = "view"; + parseAndAssertCommandType(input, PrintCalenderCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_printHelpCommand_correct() { + final String input = "help"; + parseAndAssertCommandType(input, PrintHelpCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_removeModuleCommand_correct() { + final String input = "remove cs1010"; + parseAndAssertCommandType(input, RemoveModuleCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_searchModuleCommand_correct() { + final String input = "search cs10"; + parseAndAssertCommandType(input,SearchModulesCommand.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_capCalcCommand_correct() { + final String input = "capcalc"; + parseAndAssertCommandType(input,Command.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_exitCommand_correct() { + final String input = "exit"; + parseAndAssertCommandType(input,Command.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_acadPlanCommand_exception() { + final String input = "acadplan"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals(ERROR_IN_ACADPLAN + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_incompleteAddCommand_exception() { + final String input = "add"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("ADD COMMAND:" + ERROR_NO_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_incompleteEditCommand_exception() { + final String input = "edit"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("EDIT COMMAND:" + ERROR_NO_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_incompleteRemoveCommand_exception() { + final String input = "remove"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("REMOVE COMMAND:" + ERROR_NO_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_incompleteSearchCommand_exception() { + final String input = "search"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("SEARCH COMMAND:" + ERROR_NO_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_incompleteDetailsCommand_exception() { + final String input = "details"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("DETAILS COMMAND:" + ERROR_NO_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_acadplanCommandTooManyParameters_exception() { + final String input = "acadplan potato peeler joe biden"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("ACADPLAN COMMAND:" + ERROR_HAS_PARAMETER + NEW_LINE + + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_viewCommandTooManyParameters_exception() { + final String input = "view potato peeler joe biden"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("VIEW COMMAND:" + ERROR_HAS_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_helpCommandTooManyParameters_exception() { + final String input = "help potato peeler joe biden"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("HELP COMMAND:" + ERROR_HAS_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_exitCommandTooManyParameters_exception() { + final String input = "exit potato peeler joe biden"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("EXIT COMMAND:" + ERROR_HAS_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void parse_capcalcCommandTooManyParameters_exception() { + final String input = "capcalc potato peeler joe biden"; + try { + AcademicPlannerParser.parse(input,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals("CAPCALC COMMAND:" + ERROR_HAS_PARAMETER + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + private void parseAndAssertCommandType(String input, Class expectedCommandClass, + ModuleLoader allModules,Person currentPerson, Ui ui, + Storage storage) { + try { + final Command result = AcademicPlannerParser.parse(input, allModules, currentPerson, ui, storage); + assertTrue(result.getClass().isAssignableFrom(expectedCommandClass)); + } catch (Exception e) { + fail(); + } + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/academicplanner/commands/ModuleDetailsCommandTest.java b/src/test/java/seedu/duke/apps/academicplanner/commands/ModuleDetailsCommandTest.java new file mode 100644 index 0000000000..981d8a2c55 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commands/ModuleDetailsCommandTest.java @@ -0,0 +1,58 @@ +package seedu.duke.apps.academicplanner.commands; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; + +//@@author vanessa-kang +class ModuleDetailsCommandTest { + private static final String VALID_CODE_TEST = "cs2101".toUpperCase(); + private static final String VALID_CODE_RESULT_CODE = "CS2101"; + private static final String VALID_CODE_RESULT_TITLE = "Effective Communication for Computing Professionals"; + + private static final String INVALID_CODE_TEST = "ccccc".toUpperCase(); + private static final String INVALID_CODE_ERROR_MESSAGE = INVALID_CODE_TEST + + " IS NOT OFFERED BY NUS\n" + + "Exiting current command back to Academic Planner Main Menu."; + + ModuleLoader allModules; + ModuleDetailsCommand detailer; + String moduleCode; + + @BeforeEach + void setup() { + try { + allModules = new ModuleLoader(); + } catch (Exception e) { + e.printStackTrace(); + } + } + + @Test + void moduledetails_validcode_success() { + try { + moduleCode = VALID_CODE_TEST; + detailer = new ModuleDetailsCommand(allModules, moduleCode); + detailer.execute(); + assertEquals(VALID_CODE_RESULT_CODE,detailer.module.getModuleCode()); + assertEquals(VALID_CODE_RESULT_TITLE,detailer.module.getTitle()); + } catch (AcademicException e) { + e.printStackTrace(); + } + } + + @Test + void moduledetails_invalidcode_exceptionThrown() { + try { + moduleCode = INVALID_CODE_TEST; + detailer = new ModuleDetailsCommand(allModules, moduleCode); + detailer.execute(); + } catch (AcademicException e) { + assertEquals(INVALID_CODE_ERROR_MESSAGE, e.getMessage()); + } + } + +} diff --git a/src/test/java/seedu/duke/apps/academicplanner/commands/SearchModulesCommandTest.java b/src/test/java/seedu/duke/apps/academicplanner/commands/SearchModulesCommandTest.java new file mode 100644 index 0000000000..86175c0642 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commands/SearchModulesCommandTest.java @@ -0,0 +1,78 @@ +package seedu.duke.apps.academicplanner.commands; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; +import seedu.duke.apps.moduleloader.ModuleLoader; +import java.util.ArrayList; + +//@@author vanessa-kang +class SearchModulesCommandTest { + private static final String PARTIAL_CODE_TEST = "cg40".toUpperCase(); + private static final int PARTIAL_CODE_RESULT = 3; + private static final ArrayList PARTIAL_CODE_RESULT_LIST = new ArrayList<>() {{ + add("CG4001"); + add("CG4002"); + add("CG4003"); + }}; + private static final String FULL_CODE_TEST = "cs1010".toUpperCase(); + private static final int FULL_CODE_RESULT = 7; + private static final ArrayList FULL_CODE_RESULT_LIST = new ArrayList<>() {{ + add("CS1010"); + add("CS1010E"); + add("CS1010J"); + add("CS1010R"); + add("CS1010S"); + add("CS1010X"); + add("CS1010XCP"); + }}; + + ModuleLoader allModules; + SearchModulesCommand searcher; + String keyword; + ArrayList testList = new ArrayList<>(); + + @BeforeEach + void setup() { + try { + allModules = new ModuleLoader(); + } catch (Exception e) { + e.printStackTrace(); + } + } + + @Test + void searchmodules_partialcode_success() { + keyword = PARTIAL_CODE_TEST; + searcher = new SearchModulesCommand(allModules,keyword); + searcher.execute(); + testList = searcher.matchList; + assertEquals(PARTIAL_CODE_RESULT, testList.size()); + assertEquals(PARTIAL_CODE_RESULT_LIST, testList); + } + + @Test + void searchmodules_fullcode_success() { + keyword = FULL_CODE_TEST; + searcher = new SearchModulesCommand(allModules,keyword); + searcher.execute(); + testList = searcher.matchList; + assertEquals(FULL_CODE_RESULT, testList.size()); + assertEquals(FULL_CODE_RESULT_LIST, testList); + } + + @Test + void searchmodules_missingkey_exceptionThrown() { + try { + searcher = new SearchModulesCommand(allModules,keyword); + searcher.execute(); + testList = searcher.matchList; + assertEquals(999, testList.size()); + fail(); + } catch (NullPointerException e) { + assertEquals(null, e.getMessage()); + } + } + +} diff --git a/src/test/java/seedu/duke/apps/academicplanner/commons/AcademicCalendarSorterTest.java b/src/test/java/seedu/duke/apps/academicplanner/commons/AcademicCalendarSorterTest.java new file mode 100644 index 0000000000..e94ad9d104 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commons/AcademicCalendarSorterTest.java @@ -0,0 +1,50 @@ +package seedu.duke.apps.academicplanner.commons; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import java.util.ArrayList; +import static org.junit.jupiter.api.Assertions.assertEquals; + +//@@author jerroldlam +class AcademicCalendarSorterTest { + Person currentPerson; + AddUtils addUtils; + ModuleLoader allModules; + AcademicCalendarSorter sorter; + + @BeforeEach + void setup() { + try { + currentPerson = new Person("Bobby"); + allModules = new ModuleLoader(); + addUtils = new AddUtils(allModules,currentPerson); + } catch (ModuleLoaderException e) { + e.printStackTrace(); + } + } + + @Test + void processCalendar_mixedList_success() { + addUtils.addModuleToUser("CS1010",1,"A-",4); + addUtils.addModuleToUser("CS1231",1,"B",4); + addUtils.addModuleToUser("CG1111",1,"B+",6); + addUtils.addModuleToUser("MA1511",1,"S",4); + addUtils.addModuleToUser("MA1512",1,"S",4); + + addUtils.addModuleToUser("CS2040C",2,"A-",4); + addUtils.addModuleToUser("CG1112",2,"B",4); + addUtils.addModuleToUser("MA1508E",2,"S",4); + + sorter = new AcademicCalendarSorter(currentPerson.getModulesList()); + + ArrayList testList = sorter.processCalendar(1); + assertEquals(testList.size(),5); + testList = sorter.processCalendar(2); + assertEquals(testList.size(),3); + } + +} diff --git a/src/test/java/seedu/duke/apps/academicplanner/commons/AddUtilsTest.java b/src/test/java/seedu/duke/apps/academicplanner/commons/AddUtilsTest.java new file mode 100644 index 0000000000..b5e2a03a9f --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commons/AddUtilsTest.java @@ -0,0 +1,84 @@ +package seedu.duke.apps.academicplanner.commons; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import java.util.ArrayList; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.assertFalse; + +//@@author jerroldlam +class AddUtilsTest { + ModuleLoader allModules; + Person currentPerson; + AddUtils addUtils; + ModuleValidator moduleValidator; + + @BeforeEach + void setup() { + try { + allModules = new ModuleLoader(); + currentPerson = new Person("Bob"); + addUtils = new AddUtils(allModules,currentPerson); + moduleValidator = new ModuleValidator(allModules,currentPerson); + } catch (ModuleLoaderException e) { + System.out.println(e.getMessage()); + } + } + + @Test + void addModuleToUser_emptyList_success() { + setup(); + + ArrayList modulesList = currentPerson.getModulesList(); + assertEquals(0,modulesList.size()); + addUtils.addModuleToUser("CS1010",1,"A+",4); + assertEquals(1,modulesList.size()); + + for (PartialModule m : modulesList) { + if (m.getModuleCode().equalsIgnoreCase("CS1010")) { + assertEquals("CS1010",m.getModuleCode()); + assertEquals(1,m.getSemesterIndex()); + assertEquals("A+",m.getGrade()); + assertEquals(4,m.getModuleCredit()); + } + } + assertTrue(moduleValidator.isModTakenByUser("CS1010")); + assertFalse(moduleValidator.isModTakenByUser("CS2113")); + } + + @Test + void addModuleToUser_nonEmptyList_success() { + setup(); + + ArrayList modulesList = currentPerson.getModulesList(); + assertEquals(0,modulesList.size()); + + addUtils.addModuleToUser("CS1010",1,"A+",4); + assertEquals(1,modulesList.size()); + + addUtils.addModuleToUser("CS1231",1,"B-",4); + assertEquals(2,modulesList.size()); + + for (PartialModule m : modulesList) { + if (m.getModuleCode().equalsIgnoreCase("CS1010")) { + assertEquals("CS1010",m.getModuleCode()); + assertEquals(1,m.getSemesterIndex()); + assertEquals("A+",m.getGrade()); + assertEquals(4,m.getModuleCredit()); + } else { + assertEquals("CS1231",m.getModuleCode()); + assertEquals(1,m.getSemesterIndex()); + assertEquals("B-",m.getGrade()); + assertEquals(4,m.getModuleCredit()); + } + } + assertTrue(moduleValidator.isModTakenByUser("CS1010")); + assertTrue(moduleValidator.isModTakenByUser("CS1231")); + assertFalse(moduleValidator.isModTakenByUser("CS2113")); + } +} diff --git a/src/test/java/seedu/duke/apps/academicplanner/commons/EditUtilsTest.java b/src/test/java/seedu/duke/apps/academicplanner/commons/EditUtilsTest.java new file mode 100644 index 0000000000..408366c8a6 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commons/EditUtilsTest.java @@ -0,0 +1,77 @@ +package seedu.duke.apps.academicplanner.commons; + +import java.util.ArrayList; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; + +//@@author harryleecp +class EditUtilsTest { + ModuleLoader allModules; + ModuleValidator moduleValidator; + Person currentPerson; + AddUtils addUtils; + EditUtils editUtils; + ArrayList modulesList; + + @BeforeEach + void setup() { + try { + allModules = new ModuleLoader(); + currentPerson = new Person("Bob"); + addUtils = new AddUtils(allModules,currentPerson); + moduleValidator = new ModuleValidator(allModules,currentPerson); + editUtils = new EditUtils(allModules, currentPerson); + + modulesList = currentPerson.getModulesList(); + assertEquals(modulesList.size(),0); + + addUtils.addModuleToUser("CS1010",1,"A+",4); + assertEquals(modulesList.size(),1); + } catch (ModuleLoaderException e) { + System.out.println(e.getMessage()); + } + } + + @Test + void updateModuleGrade_nonEmptyList_success() throws AcademicException { + setup(); + ArrayList testArr = new ArrayList<>(); + testArr.add(0); + + editUtils.updateModuleGrade("A-", 0, testArr); + assertEquals(modulesList.size(), 1); + for (PartialModule m : modulesList) { + if (m.getModuleCode().equalsIgnoreCase("CS1010")) { + assertEquals(m.getModuleCode(), "CS1010"); + assertTrue(moduleValidator.isValidGrade(m.getGrade())); + assertEquals(m.getGrade(), "A-"); + assertEquals(m.getSemesterIndex(), 1); + assertEquals(m.getModuleCredit(), 4); + } + } + } + + @Test + void updateModuleSemester_nonEmptyList_success() { + setup(); + + editUtils.updateModuleSemester("3", 0); + assertEquals(modulesList.size(), 1); + for (PartialModule m : modulesList) { + if (m.getModuleCode().equalsIgnoreCase("CS1010")) { + assertEquals(m.getModuleCode(), "CS1010"); + assertEquals(m.getGrade(), "A+"); + assertTrue(moduleValidator.isValidSemester(m.getSemesterIndex())); + assertEquals(m.getSemesterIndex(), 3); + assertEquals(m.getModuleCredit(), 4); + } + } + } +} diff --git a/src/test/java/seedu/duke/apps/academicplanner/commons/RemoveUtilsTest.java b/src/test/java/seedu/duke/apps/academicplanner/commons/RemoveUtilsTest.java new file mode 100644 index 0000000000..9c33a9faa9 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commons/RemoveUtilsTest.java @@ -0,0 +1,52 @@ +package seedu.duke.apps.academicplanner.commons; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import java.util.ArrayList; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; + +//@@author harryleecp +class RemoveUtilsTest { + ModuleLoader allModules; + Person currentPerson; + ModuleValidator moduleValidator; + AddUtils addUtils; + RemoveUtils removeUtils; + + @BeforeEach + void setup() { + try { + allModules = new ModuleLoader(); + currentPerson = new Person("Bob"); + addUtils = new AddUtils(allModules,currentPerson); + moduleValidator = new ModuleValidator(allModules,currentPerson); + removeUtils = new RemoveUtils(new Ui(), currentPerson); + } catch (ModuleLoaderException e) { + System.out.println(e.getMessage()); + } + } + + @Test + void removeModuleFromUserModuleList_nonEmptyList_success() { + setup(); + + ArrayList modulesList = currentPerson.getModulesList(); + assertEquals(modulesList.size(),0); + addUtils.addModuleToUser("CS1010",1,"A+",4); + assertEquals(modulesList.size(),1); + try { + removeUtils.removeModuleFromUserModuleList("CS1010"); + assertEquals(modulesList.size(), 0); + } catch (Exception e) { + fail(); + } + } +} diff --git a/src/test/java/seedu/duke/apps/academicplanner/commons/SharedUtilsTest.java b/src/test/java/seedu/duke/apps/academicplanner/commons/SharedUtilsTest.java new file mode 100644 index 0000000000..db6eb05a98 --- /dev/null +++ b/src/test/java/seedu/duke/apps/academicplanner/commons/SharedUtilsTest.java @@ -0,0 +1,22 @@ +package seedu.duke.apps.academicplanner.commons; + +import java.util.ArrayList; +import org.junit.jupiter.api.Test; +import static seedu.duke.apps.academicplanner.commons.SharedUtils.getAllOccurrencesOfModule; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +//@@author Khenus +class SharedUtilsTest { + @Test + void getAllOccurrencesOfModule_noOccurrence_success() { + Person testPerson = new Person("test"); + String testCode = "CS1010"; + + ArrayList allOccurrence = getAllOccurrencesOfModule(testPerson, testCode); + + assertEquals(allOccurrence.size(), 0); + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/capcalculator/CapCalculatorAppParserTest.java b/src/test/java/seedu/duke/apps/capcalculator/CapCalculatorAppParserTest.java new file mode 100644 index 0000000000..b633f62d7e --- /dev/null +++ b/src/test/java/seedu/duke/apps/capcalculator/CapCalculatorAppParserTest.java @@ -0,0 +1,198 @@ +package seedu.duke.apps.capcalculator; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.capcalculator.commands.CurrentCommand; +import seedu.duke.apps.capcalculator.commands.PrintHelpCommand; +import seedu.duke.apps.capcalculator.commands.SetTargetCommand; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; + +//@@author JuZihao +class CapCalculatorAppParserTest { + private static final String INVALID_COMMAND_MESSAGE = "INVALID COMMAND"; + private static final String INVALID_SET_COMMAND_MESSAGE = "OOPS!!! Looks like you entered an invalid set command!"; + private static final String SWITCH_APP_ERROR = "Sorry, you are already in CAP calculator!"; + private static final String ERROR_HAS_PARAMETER = " NO PARAMETER ALLOWED AFTER COMMAND"; + private static final String MISSING_SET_PARAMETER = "OOPS!!! Looks like you did not specify a set command type!"; + private static final String NEW_LINE = "\n"; + private static final String EXITING_CURRENT_COMMAND = "Exiting current command back to CAP Calculator Main Menu."; + + private Person currentPerson; + private Ui ui; + + @BeforeEach + public void setup() { + currentPerson = new Person("Bob"); + ui = new Ui(); + } + + @Test + void parse_emptyInput_exceptionThrown() { + try { + final String emptyInput = ""; + CapCalculatorParser.parse(emptyInput, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage(INVALID_COMMAND_MESSAGE), e.getMessage()); + } + } + + @Test + void parse_unknownInput_exceptionThrown() { + try { + final String unknownInput = "unknown command word"; + CapCalculatorParser.parse(unknownInput, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage(INVALID_COMMAND_MESSAGE), e.getMessage()); + } + } + + /** + * Tests for commands. ======================================================================= + */ + + @Test + public void parse_currentCommand_parsedCorrectly() { + final String input = "current"; + parseAndAssertCommandType(input, CurrentCommand.class, currentPerson, ui); + } + + @Test + public void parse_wrongCurrentCommand_exceptionThrown() { + try { + final String input = "current 1"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage("CURRENT COMMAND:" + ERROR_HAS_PARAMETER), e.getMessage()); + } + } + + @Test + public void parse_emptySetCommand_exceptionThrown() { + try { + final String input = "set"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage(MISSING_SET_PARAMETER), e.getMessage()); + } + } + + @Test + public void parse_wrongSetCommand_exceptionThrown() { + try { + final String input = "set 123"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage(INVALID_SET_COMMAND_MESSAGE), e.getMessage()); + } + } + + @Test + public void parse_setTargetCommand_parsedCorrectly() { + final String input = "set target"; + parseAndAssertCommandType(input, SetTargetCommand.class, currentPerson, ui); + } + + @Test + public void parse_wrongSetTargetCommand_exceptionThrown() { + try { + final String input = "set target 1"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage("SET TARGET COMMAND:" + ERROR_HAS_PARAMETER), e.getMessage()); + } + } + + @Test + public void parse_exitCommand_parsedCorrectly() { + final String input = "exit"; + parseAndAssertCommandType(input, Command.class, currentPerson, ui); + } + + @Test + public void parse_wrongExitCommand_exceptionThrown() { + try { + final String input = "exit 1"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage("EXIT COMMAND:" + ERROR_HAS_PARAMETER), e.getMessage()); + } + } + + @Test + public void parse_HelpCommand_parsedCorrectly() { + final String input = "help"; + parseAndAssertCommandType(input, PrintHelpCommand.class, currentPerson, ui); + } + + @Test + public void parse_wrongHelpCommand_exceptionThrown() { + try { + final String input = "help 1"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage("HELP COMMAND:" + ERROR_HAS_PARAMETER), e.getMessage()); + } + } + + @Test + public void parse_acadPlanCommand_parsedCorrectly() { + final String input = "acadplan"; + parseAndAssertCommandType(input, Command.class, currentPerson, ui); + } + + @Test + public void parse_wrongAcadPlanCommand_exceptionThrown() { + try { + final String input = "acadplan 1"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage("ACADPLAN COMMAND:" + ERROR_HAS_PARAMETER), e.getMessage()); + } + } + + @Test + public void parse_capCalcCommand_exceptionThrown() { + try { + final String input = "capcalc"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage(SWITCH_APP_ERROR), e.getMessage()); + } + } + + @Test + public void parse_wrongCapCalcCommand_exceptionThrown() { + try { + final String input = "capcalc 1"; + CapCalculatorParser.parse(input, currentPerson, ui); + } catch (Exception e) { + assertEquals(getErrorMessage("CAPCALC COMMAND:" + ERROR_HAS_PARAMETER), e.getMessage()); + } + } + + /** + * Parses input and asserts the class/type of the returned command object. + * + * @param input to be parsed + * @param expectedCommandClass expected class of returned command + */ + private void parseAndAssertCommandType(String input, Class expectedCommandClass, + Person currentPerson, Ui ui) { + try { + final Command result = CapCalculatorParser.parse(input, currentPerson, ui); + assertTrue(result.getClass().isAssignableFrom(expectedCommandClass)); + } catch (Exception e) { + fail(); + } + } + + private String getErrorMessage(String errorMessage) { + return errorMessage + NEW_LINE + EXITING_CURRENT_COMMAND; + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/capcalculator/SetSuParserTest.java b/src/test/java/seedu/duke/apps/capcalculator/SetSuParserTest.java new file mode 100644 index 0000000000..c7413ce9a6 --- /dev/null +++ b/src/test/java/seedu/duke/apps/capcalculator/SetSuParserTest.java @@ -0,0 +1,64 @@ +package seedu.duke.apps.capcalculator; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.capcalculator.commands.SetSuByModuleCommand; +import seedu.duke.apps.capcalculator.commands.SetSuBySemesterCommand; +import seedu.duke.global.Command; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; + +//@@author JuZihao +class SetSuParserTest { + private static final String INVALID_SU_ERROR = "Number entered does not correspond to any S/U method."; + Person currentPerson; + Ui ui; + + @BeforeEach + public void setup() { + currentPerson = new Person("Bob"); + ui = new Ui(); + } + + @Test + void parse_SetSuByModuleCommand_parsedCorrectly() { + final String choice = "2"; + parseAndAssertCommandType(choice, SetSuByModuleCommand.class, currentPerson, ui); + } + + @Test + void parse_SetSuBySemesterCommand_parsedCorrectly() { + final String choice = "1"; + parseAndAssertCommandType(choice, SetSuBySemesterCommand.class, currentPerson, ui); + } + + @Test + void parse_unknownChoice_exceptionThrown() { + try { + final String unknownChoice = "unknown choice"; + SetSuParser.parse(unknownChoice, currentPerson, ui); + } catch (Exception e) { + assertEquals(INVALID_SU_ERROR, e.getMessage()); + } + } + + /** + * Parses input and asserts the class/type of the returned command object. + * + * @param choice to be parsed + * @param expectedCommandClass expected class of returned command + */ + private void parseAndAssertCommandType(String choice, Class expectedCommandClass, + Person currentPerson, Ui ui) { + try { + final Command result = SetSuParser.parse(choice, currentPerson, ui); + assertTrue(result.getClass().isAssignableFrom(expectedCommandClass)); + } catch (Exception e) { + fail(); + } + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/capcalculator/commands/CurrentCommandTest.java b/src/test/java/seedu/duke/apps/capcalculator/commands/CurrentCommandTest.java new file mode 100644 index 0000000000..6f02fa7de1 --- /dev/null +++ b/src/test/java/seedu/duke/apps/capcalculator/commands/CurrentCommandTest.java @@ -0,0 +1,141 @@ +package seedu.duke.apps.capcalculator.commands; + +import java.util.ArrayList; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.academicplanner.commons.AddUtils; +import seedu.duke.apps.academicplanner.commons.EditUtils; +import seedu.duke.apps.academicplanner.commons.RemoveUtils; +import seedu.duke.apps.academicplanner.exceptions.AcademicException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +//@@author jerroldlam +class CurrentCommandTest { + Person currentPerson; + ModuleLoader allModules; + AddUtils addUtils; + RemoveUtils removeUtils; + EditUtils editUtils; + + @BeforeEach + void setup() throws ModuleLoaderException { + currentPerson = new Person("Bob"); + allModules = new ModuleLoader(); + addUtils = new AddUtils(allModules,currentPerson); + removeUtils = new RemoveUtils(new Ui(), currentPerson); + editUtils = new EditUtils(allModules, currentPerson); + } + + @Test + void execute_populatedList_result() { + addUtils.addModuleToUser("CS1010",1,"A-",4); + addUtils.addModuleToUser("CS1231",1,"B",4); + addUtils.addModuleToUser("CG1111",1,"B+",6); + addUtils.addModuleToUser("MA1511",1,"S",4); + addUtils.addModuleToUser("MA1512",1,"S",4); + + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + assertEquals(4.0, currentCap); + } + + @Test + void execute_populatedListAllSU_fail() { + addUtils.addModuleToUser("CS1010",1,"S",4); + addUtils.addModuleToUser("CS1231",1,"S",4); + addUtils.addModuleToUser("CG1111",1,"S",6); + addUtils.addModuleToUser("MA1511",1,"S",4); + addUtils.addModuleToUser("MA1512",1,"S",4); + + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + boolean isNan = Double.isNaN(currentCap); + assertTrue(isNan); + } + + @Test + void execute_emptyList_fail() { + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + boolean isNan = Double.isNaN(currentCap); + assertTrue(isNan); + } + + @Test + void execute_addOneRemoveOne_fail() { + try { + addUtils.addModuleToUser("CS1010", 1, "S", 4); + removeUtils.removeModuleFromUserModuleList("CS1010"); + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + boolean isNan = Double.isNaN(currentCap); + assertTrue(isNan); + } catch (Exception e) { + fail(); + } + } + + @Test + void execute_addTwoRemoveOne_result() { + try { + addUtils.addModuleToUser("CS1010", 1, "S", 4); + addUtils.addModuleToUser("CS2040", 1, "A", 4); + removeUtils.removeModuleFromUserModuleList("CS1010"); + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + assertEquals(5.0, currentCap); + } catch (Exception e) { + fail(); + } + } + + @Test + void execute_addTwoRemoveOne_fail() { + try { + addUtils.addModuleToUser("CS1010", 1, "A", 4); + addUtils.addModuleToUser("CS2040", 1, "S", 4); + removeUtils.removeModuleFromUserModuleList("CS1010"); + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + boolean isNan = Double.isNaN(currentCap); + assertTrue(isNan); + } catch (Exception e) { + fail(); + } + } + + @Test + void execute_addOneEditOne_result() throws AcademicException { + ArrayList testArr = new ArrayList<>(); + testArr.add(0); + + addUtils.addModuleToUser("CS1010",1,"A",4); + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + assertEquals(5, currentCap); + editUtils.updateModuleGrade("A-", 0, testArr); + currentCap = currentCommand.getCurrentCap(); + assertEquals(4.5, currentCap); + } + + @Test + void execute_addOneEditOne_fail() throws AcademicException { + ArrayList testArr = new ArrayList<>(); + testArr.add(0); + + addUtils.addModuleToUser("CS1010",1,"A",4); + CurrentCommand currentCommand = new CurrentCommand(currentPerson); + double currentCap = currentCommand.getCurrentCap(); + assertEquals(5, currentCap); + editUtils.updateModuleGrade("S", 0, testArr); + currentCap = currentCommand.getCurrentCap(); + boolean isNan = Double.isNaN(currentCap); + assertTrue(isNan); + } +} diff --git a/src/test/java/seedu/duke/apps/capcalculator/commons/CalculatorUtilsTest.java b/src/test/java/seedu/duke/apps/capcalculator/commons/CalculatorUtilsTest.java new file mode 100644 index 0000000000..636c7c5843 --- /dev/null +++ b/src/test/java/seedu/duke/apps/capcalculator/commons/CalculatorUtilsTest.java @@ -0,0 +1,18 @@ +package seedu.duke.apps.capcalculator.commons; + +import org.junit.jupiter.api.Test; + +class CalculatorUtilsTest { + + @Test + void updateCap() { + } + + @Test + void formatCapToString() { + } + + @Test + void isNaN_not() { + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/capcalculator/commons/SetSuUtilsTest.java b/src/test/java/seedu/duke/apps/capcalculator/commons/SetSuUtilsTest.java new file mode 100644 index 0000000000..2d1a3ff6f2 --- /dev/null +++ b/src/test/java/seedu/duke/apps/capcalculator/commons/SetSuUtilsTest.java @@ -0,0 +1,144 @@ +package seedu.duke.apps.capcalculator.commons; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.academicplanner.commons.AddUtils; +import seedu.duke.apps.capcalculator.exceptions.CapCalculatorException; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.PartialModule; +import seedu.duke.global.objects.Person; +import seedu.duke.ui.Ui; + +import java.util.ArrayList; + +import static java.util.stream.Collectors.toList; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; + +//@@author JuZihao +class SetSuUtilsTest { + private static final String EMPTY_LIST_ERROR = "Looks like your S/U list is empty!"; + private static final String INVALID_MODULE_ERROR = "Looks like you did not take the module you entered " + + "or the module you entered has a grade that cannot be S/Ued!"; + private static final String EXITING_CURRENT_COMMAND = + "Exiting current command back to CAP Calculator App Main Menu."; + private static final String NEW_LINE = "\n"; + private static final String DUPLICATE_MODULE_ERROR = "Looks like you have already added this module!"; + + Person currentPerson; + AddUtils addUtils; + SetSuUtils setSuUtils; + ModuleLoader allModules; + Ui ui; + ArrayList suList; + PartialModule suModule; + ArrayList filteredList; + + @BeforeEach + void setup() { + try { + currentPerson = new Person("Bobby"); + allModules = new ModuleLoader(); + addUtils = new AddUtils(allModules,currentPerson); + ui = new Ui(); + + addUtils.addModuleToUser("CS1010",1,"A-",4); + addUtils.addModuleToUser("CS1231",1,"B",4); + addUtils.addModuleToUser("CG1111",1,"B+",6); + addUtils.addModuleToUser("MA1511",1,"S",4); + addUtils.addModuleToUser("MA1512",1,"S",4); + + addUtils.addModuleToUser("CS2040C",2,"A-",4); + addUtils.addModuleToUser("CG1112",2,"B",4); + addUtils.addModuleToUser("MA1508E",2,"S",4); + addUtils.addModuleToUser("GER1000",2,"A",4); + addUtils.addModuleToUser("GET1002",2,"B+",4); + + setSuUtils = new SetSuUtils(currentPerson, ui); + filteredList = (ArrayList) currentPerson.getModulesList().stream() + .filter((partialModule) -> partialModule.getCap() >= 0) + .collect(toList()); + suList = new ArrayList<>(); + + } catch (ModuleLoaderException e) { + e.printStackTrace(); + } + } + + @Test + void execute_getSuListBySemester_result() { + try { + suList = setSuUtils.getSuListBySemester(1); + assertEquals(3, suList.size()); + + suList = setSuUtils.getSuListBySemester(2); + assertEquals(4, suList.size()); + } catch (CapCalculatorException e) { + fail(); + } + } + + @Test + void execute_getSuListBySemester_exceptionThrown() { + try { + suList = setSuUtils.getSuListBySemester(4); + assertEquals(0, suList.size()); + } catch (CapCalculatorException e) { + assertEquals(EMPTY_LIST_ERROR + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void execute_getSuModule_result() { + try { + suModule = setSuUtils.getSuModule(filteredList, "CS1010"); + assertEquals("CS1010", suModule.getModuleCode()); + assertEquals(4.50, suModule.getCap()); + assertEquals(4, suModule.getModuleCredit()); + + suModule = setSuUtils.getSuModule(filteredList, "CS1231"); + assertEquals("CS1231", suModule.getModuleCode()); + assertEquals(3.50,suModule.getCap()); + assertEquals(4, suModule.getModuleCredit()); + } catch (CapCalculatorException e) { + fail(); + } + } + + @Test + void execute_getSuModule_exceptionThrown() { + try { + suModule = setSuUtils.getSuModule(filteredList, "MA1511"); + } catch (CapCalculatorException e) { + assertEquals(INVALID_MODULE_ERROR + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } + + @Test + void execute_addModuleToSuList_results() { + try { + suModule = setSuUtils.getSuModule(filteredList, "CS1231"); + setSuUtils.addModuleToSuList(suList,suModule); + assertEquals(1, suList.size()); + + suModule = setSuUtils.getSuModule(filteredList, "CS1010"); + setSuUtils.addModuleToSuList(suList,suModule); + assertEquals(2, suList.size()); + } catch (CapCalculatorException e) { + fail(); + } + } + + @Test + void execute_addModuleToSuList_exceptionThrown() { + try { + suModule = setSuUtils.getSuModule(filteredList, "CS1231"); + setSuUtils.addModuleToSuList(suList,suModule); + suModule = setSuUtils.getSuModule(filteredList, "CS1231"); + setSuUtils.addModuleToSuList(suList,suModule); + } catch (CapCalculatorException e) { + assertEquals(DUPLICATE_MODULE_ERROR + NEW_LINE + EXITING_CURRENT_COMMAND, e.getMessage()); + } + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/capcalculator/commons/SetTargetUtilsTest.java b/src/test/java/seedu/duke/apps/capcalculator/commons/SetTargetUtilsTest.java new file mode 100644 index 0000000000..cbcf29f941 --- /dev/null +++ b/src/test/java/seedu/duke/apps/capcalculator/commons/SetTargetUtilsTest.java @@ -0,0 +1,87 @@ +package seedu.duke.apps.capcalculator.commons; + +import java.io.ByteArrayInputStream; +import java.io.InputStream; +import java.util.Scanner; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.capcalculator.exceptions.InvalidCapException; +import seedu.duke.apps.capcalculator.exceptions.InvalidCreditException; +import seedu.duke.global.objects.Person; + +//@@author Khenus +class SetTargetUtilsTest { + @Test + public void getTargetCap_getCapFromUser_success() throws InvalidCapException { + String input = "4.9"; + InputStream in = new ByteArrayInputStream(input.getBytes()); + Scanner scan = new Scanner(in); + Person person = new Person("testing"); + + SetTargetUtils utils = new SetTargetUtils(person, scan); + + assertEquals(4.9, utils.getTargetCap()); + } + + @Test + public void getTargetCap_getCapFromUserLargerThan5_failure() { + String input = "5.1"; + InputStream in = new ByteArrayInputStream(input.getBytes()); + Scanner scan = new Scanner(in); + Person person = new Person("testing"); + + SetTargetUtils utils = new SetTargetUtils(person, scan); + + Exception exception = assertThrows(InvalidCapException.class, () -> { + utils.getTargetCap(); + }); + + assertTrue(exception.getMessage().contains("Your target CAP cannot be greater than the maximum CAP of 5!")); + } + + @Test + public void getTargetCap_getCapFromUserLesserThan0_failure() { + String input = "-0.1"; + InputStream in = new ByteArrayInputStream(input.getBytes()); + Scanner scan = new Scanner(in); + Person person = new Person("testing"); + + SetTargetUtils utils = new SetTargetUtils(person, scan); + + Exception exception = assertThrows(InvalidCapException.class, () -> { + utils.getTargetCap(); + }); + + assertTrue(exception.getMessage().contains("Your target CAP cannot be lower than the minimum CAP of 0!")); + } + + @Test + public void getTargetGradedMC_getTargetFromUser_success() throws InvalidCreditException { + String input = "180"; + InputStream in = new ByteArrayInputStream(input.getBytes()); + Scanner scan = new Scanner(in); + Person person = new Person("testing"); + + SetTargetUtils utils = new SetTargetUtils(person, scan); + + assertEquals(180, utils.getTargetGradedMC()); + } + + @Test + public void getTargetGradedMC_getTargetFromUserDouble_failure() { + String input = "-1"; + InputStream in = new ByteArrayInputStream(input.getBytes()); + Scanner scan = new Scanner(in); + Person person = new Person("testing"); + + SetTargetUtils utils = new SetTargetUtils(person, scan); + + Exception exception = assertThrows(InvalidCreditException.class, () -> { + utils.getTargetGradedMC(); + }); + + assertTrue(exception.getMessage().contains("Your target MC should be greater than 0!")); + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/apps/moduleloader/ModuleLoaderTest.java b/src/test/java/seedu/duke/apps/moduleloader/ModuleLoaderTest.java new file mode 100644 index 0000000000..55d6c041f5 --- /dev/null +++ b/src/test/java/seedu/duke/apps/moduleloader/ModuleLoaderTest.java @@ -0,0 +1,58 @@ +package seedu.duke.apps.moduleloader; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.FullModule; + +import java.util.Map; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; + +//@@author Khenus +class ModuleLoaderTest { + private static final int TOTAL_NUMBER_OF_MODULES = 12436; + private static final int INDEX_OF_CS1010 = 1786; + + private ModuleLoader allModules; + + @BeforeEach + public void setup() { + try { + allModules = new ModuleLoader(); + } catch (ModuleLoaderException e) { + System.out.println(e.getMessage()); + } + } + + @Test + void getModuleMap_loadAllModuleData_success() { + Map moduleMap = allModules.getModuleMap(); + + assertEquals(moduleMap.get("CS1010"), INDEX_OF_CS1010); + } + + @Test + void getModuleFullDetails_loadAllModuleData_success() { + FullModule[] modules = allModules.getModuleFullDetails(); + + assertEquals(modules.length, TOTAL_NUMBER_OF_MODULES); + assertEquals(modules[1786].toString(), "{\"additionalProperties\":{}," + + "\"attributes\":[true,false,false,false,false,false,false,false,false]," + + "\"corequisite\":\"\",\"department\":\"Computer Science\",\"faculty\":\"Computing\"," + + "\"moduleCode\":\"CS1010\",\"moduleCredit\":4," + + "\"preclusion\":\"CS1010E, CS1010J, CS1010S, CS1010X, CS1010XCP, CS1101S\"," + + "\"prerequisite\":\"\",\"semester\":[1,2],\"title\":\"Programming Methodology\"}"); + } + + @Test + void getModuleFullDetails_loadAllModuleData_fail() { + Exception exception = assertThrows(ModuleLoaderException.class, () -> { + allModules = new ModuleLoader(false); + }); + + assertTrue(exception.getMessage().contains("Data for Modules corrupted!\nTerminating program...")); + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/parser/AppParserTest.java b/src/test/java/seedu/duke/parser/AppParserTest.java new file mode 100644 index 0000000000..c517b65e61 --- /dev/null +++ b/src/test/java/seedu/duke/parser/AppParserTest.java @@ -0,0 +1,81 @@ +package seedu.duke.parser; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.academicplanner.AcademicPlannerApp; +import seedu.duke.apps.capcalculator.CapCalculatorApp; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.global.App; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.Storage; +import seedu.duke.ui.Ui; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; + +//@@author jerroldlam +class AppParserTest { + + private static final String INVALID_COMMAND_MESSAGE = "OOPS!!! I'm sorry, but I don't know what that means :-("; + + ModuleLoader allModules; + Person currentPerson; + Ui ui; + Storage storage; + + @BeforeEach + void setup() { + try { + allModules = new ModuleLoader(); + currentPerson = new Person("Bob"); + ui = new Ui(); + storage = new Storage(allModules); + } catch (Exception e) { + fail(); + } + } + + @Test + void parse_emptyInput_exceptionThrown() { + try { + final String emptyInput = ""; + AppParser.parse(emptyInput,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals(INVALID_COMMAND_MESSAGE, e.getMessage()); + } + } + + @Test + void parse_randomInput_exceptionThrown() { + try { + final String randomInput = "i am a gummy bear"; + AppParser.parse(randomInput,allModules,currentPerson,ui,storage); + } catch (Exception e) { + assertEquals(INVALID_COMMAND_MESSAGE, e.getMessage()); + } + } + + @Test + void parse_acadplan_correct() { + final String input = "acadplan"; + parseAndAssertCommandType(input, AcademicPlannerApp.class,allModules,currentPerson,ui,storage); + } + + @Test + void parse_capcalc_correct() { + final String input = "capcalc"; + parseAndAssertCommandType(input, CapCalculatorApp.class,allModules,currentPerson,ui,storage); + } + + private void parseAndAssertCommandType(String input, Class expectedCommandClass, + ModuleLoader allModules, Person currentPerson, Ui ui, + Storage storage) { + try { + final App result = AppParser.parse(input, allModules, currentPerson, ui, storage); + assertTrue(result.getClass().isAssignableFrom(expectedCommandClass)); + } catch (Exception e) { + fail(); + } + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/storage/StorageTest.java b/src/test/java/seedu/duke/storage/StorageTest.java new file mode 100644 index 0000000000..2f4cb10683 --- /dev/null +++ b/src/test/java/seedu/duke/storage/StorageTest.java @@ -0,0 +1,54 @@ +package seedu.duke.storage; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.Person; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +//@@author Khenus +class StorageTest { + private Storage storage; + private ByteArrayOutputStream outContent; + private Person person; + + @BeforeEach + public void setup() throws ModuleLoaderException { + ModuleLoader allModules = new ModuleLoader(); + storage = new Storage(allModules); + person = new Person("test"); + outContent = new ByteArrayOutputStream(); + System.setOut(new PrintStream(outContent)); + } + + @Test + public void loader_loadingFileMissing_success() { + String notFoundCheckString = "Save file not found!\nIt will be automatically created."; + String corruptedCheckString = "Save file corrupted!"; + String successfulCheckString = "module loaded."; + String multipleSuccessfulCheckString = "modules loaded."; + String emptyFileCheckString = "Save file is empty. No module loaded."; + storage.loader(person); + + boolean fileNotFound = outContent.toString().contains(notFoundCheckString); + boolean corrupted = outContent.toString().contains(corruptedCheckString); + boolean successful = outContent.toString().contains(successfulCheckString); + boolean multiple = outContent.toString().contains(multipleSuccessfulCheckString); + boolean emptyFile = outContent.toString().contains(emptyFileCheckString); + + assertTrue(fileNotFound || corrupted || successful || multiple || emptyFile); + } + + @Test + public void saver_savingDataToFile_success() { + String checkString = "Data successfully saved!"; + storage.saver(person); + + assertTrue(outContent.toString().contains(checkString)); + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/storage/commons/FieldValidatorTest.java b/src/test/java/seedu/duke/storage/commons/FieldValidatorTest.java new file mode 100644 index 0000000000..721f51242a --- /dev/null +++ b/src/test/java/seedu/duke/storage/commons/FieldValidatorTest.java @@ -0,0 +1,155 @@ +package seedu.duke.storage.commons; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; +import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.academicplanner.commons.ModuleValidator; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.exceptions.CorruptedSaveFileException; + +//@@author Khenus +class FieldValidatorTest { + private Person currentPerson; + + @BeforeEach + void setup() { + try { + currentPerson = new Person("Bob"); + } catch (Exception e) { + fail(); + } + } + + + @Test + void validate_allFieldsValid_success() throws ModuleLoaderException { + int[] details = {0, 0, 0, 0, 0, 0}; + String[] fieldItems = {"1", "CG1111", "A", "6"}; + ModuleValidator moduleValidator = new ModuleValidator(new ModuleLoader(), currentPerson); + FieldValidator validator = new FieldValidator(details, fieldItems, moduleValidator, currentPerson); + + int[] detailsCheck = {1, 0, 0, 0, 0, 0}; + + boolean isEntryValid = validator.validate(); + assertEquals(true, isEntryValid); + assertArrayEquals(detailsCheck, details); + } + + @Test + void validate_invalidSemester_success() throws ModuleLoaderException { + int[] details = {0, 0, 0, 0, 0, 0}; + String[] fieldItems = {"-1", "CG1111", "A", "6"}; + ModuleValidator moduleValidator = new ModuleValidator(new ModuleLoader(), currentPerson); + FieldValidator validator = new FieldValidator(details, fieldItems, moduleValidator, currentPerson); + + int[] detailsCheck = {0, 1, 1, 0, 0, 0}; + + boolean isEntryValid = validator.validate(); + assertEquals(false, isEntryValid); + assertArrayEquals(detailsCheck, details); + } + + @Test + void validate_invalidModule_success() throws ModuleLoaderException { + int[] details = {0, 0, 0, 0, 0, 0}; + String[] fieldItems = {"1", "CG11111", "A", "6"}; + ModuleValidator moduleValidator = new ModuleValidator(new ModuleLoader(), currentPerson); + FieldValidator validator = new FieldValidator(details, fieldItems, moduleValidator, currentPerson); + + int[] detailsCheck = {0, 1, 0, 1, 0, 0}; + + boolean isEntryValid = validator.validate(); + assertEquals(false, isEntryValid); + assertArrayEquals(detailsCheck, details); + } + + @Test + void validate_invalidGrade_success() throws ModuleLoaderException { + int[] details = {0, 0, 0, 0, 0, 0}; + String[] fieldItems = {"1", "CG1111", "Z", "6"}; + ModuleValidator moduleValidator = new ModuleValidator(new ModuleLoader(), currentPerson); + FieldValidator validator = new FieldValidator(details, fieldItems, moduleValidator, currentPerson); + + int[] detailsCheck = {0, 1, 0, 0, 1, 0}; + + boolean isEntryValid = validator.validate(); + assertEquals(false, isEntryValid); + assertArrayEquals(detailsCheck, details); + } + + @Test + void validate_invalidModuleCredit_success() throws ModuleLoaderException { + int[] details = {0, 0, 0, 0, 0, 0}; + String[] fieldItems = {"1", "CG1111", "A", "-50"}; + ModuleValidator moduleValidator = new ModuleValidator(new ModuleLoader(), currentPerson); + FieldValidator validator = new FieldValidator(details, fieldItems, moduleValidator, currentPerson); + + int[] detailsCheck = {0, 1, 0, 0, 0, 1}; + + boolean isEntryValid = validator.validate(); + assertEquals(false, isEntryValid); + assertArrayEquals(detailsCheck, details); + } + + @Test + void validate_invalidFieldsPriority_success() throws ModuleLoaderException { + int[] details = {0, 0, 0, 0, 0, 0}; + String[] fieldItems = {"-1", "CG11111", "Z", "-50"}; + ModuleValidator moduleValidator = new ModuleValidator(new ModuleLoader(), currentPerson); + FieldValidator validator = new FieldValidator(details, fieldItems, moduleValidator, currentPerson); + + int[] detailsCheck = {0, 1, 1, 0, 0, 0}; + + boolean isEntryValid = validator.validate(); + assertEquals(false, isEntryValid); + assertArrayEquals(detailsCheck, details); + } + + @Test + public void printLoadDetails_corruptedSaveFile_success() { + assertThrows(CorruptedSaveFileException.class, () -> { + FieldValidator.printLoadDetails(false, 0); + }); + } + + @Test + public void printLoadDetails_allEntryAreValid_zeroEntry_success() throws CorruptedSaveFileException { + String checkString = "Save file is empty. No module loaded."; + ByteArrayOutputStream outContent = new ByteArrayOutputStream(); + System.setOut(new PrintStream(outContent)); + + FieldValidator.printLoadDetails(true, 0); + + assertTrue(outContent.toString().contains(checkString)); + } + + @Test + public void printLoadDetails_allEntryAreValid_oneEntry_success() throws CorruptedSaveFileException { + String checkString = "1 module loaded."; + ByteArrayOutputStream outContent = new ByteArrayOutputStream(); + System.setOut(new PrintStream(outContent)); + + FieldValidator.printLoadDetails(true, 1); + + assertTrue(outContent.toString().contains(checkString)); + } + + @Test + public void printLoadDetails_allEntryAreValid_multipleEntry_success() throws CorruptedSaveFileException { + String checkString = "10 modules loaded."; + ByteArrayOutputStream outContent = new ByteArrayOutputStream(); + System.setOut(new PrintStream(outContent)); + + FieldValidator.printLoadDetails(true, 10); + + assertTrue(outContent.toString().contains(checkString)); + } +} \ No newline at end of file diff --git a/src/test/java/seedu/duke/storage/commons/LoadUtilsTest.java b/src/test/java/seedu/duke/storage/commons/LoadUtilsTest.java new file mode 100644 index 0000000000..87141c215e --- /dev/null +++ b/src/test/java/seedu/duke/storage/commons/LoadUtilsTest.java @@ -0,0 +1,34 @@ +package seedu.duke.storage.commons; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.apps.moduleloader.ModuleLoader; +import seedu.duke.apps.moduleloader.exceptions.ModuleLoaderException; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.exceptions.LoadFileException; + +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.assertThrows; + +//@@author Khenus +class LoadUtilsTest { + private Person person; + private String wrongFileName = "PlanNus.wrong"; + private ModuleLoader allModules; + + @BeforeEach + void setup() throws ModuleLoaderException { + person = new Person("test"); + allModules = new ModuleLoader(); + } + + @Test + void load_LoadFileExceptionTesting_success() { + LoadUtils loader = new LoadUtils(person, wrongFileName, allModules); + Exception exception = assertThrows(LoadFileException.class, () -> { + loader.load(); + }); + + assertTrue(exception.getMessage().contains("Save file not found!")); + } +} diff --git a/src/test/java/seedu/duke/storage/commons/SaveUtilsTest.java b/src/test/java/seedu/duke/storage/commons/SaveUtilsTest.java new file mode 100644 index 0000000000..36a24da23c --- /dev/null +++ b/src/test/java/seedu/duke/storage/commons/SaveUtilsTest.java @@ -0,0 +1,29 @@ +package seedu.duke.storage.commons; + +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import seedu.duke.global.objects.Person; +import seedu.duke.storage.exceptions.SaveFileException; + +//@@author Khenus +class SaveUtilsTest { + private Person person; + private String wrongFileName = ""; + + @BeforeEach + void setup() { + person = new Person("test"); + } + + @Test + void save_saveFileExceptionTesting_success() { + SaveUtils saver = new SaveUtils(person, wrongFileName); + Exception exception = assertThrows(SaveFileException.class, () -> { + saver.save(); + }); + + assertTrue(exception.getMessage().contains("Error accessing save file!")); + } +} diff --git a/text-ui-test/EXPECTED.TXT b/text-ui-test/EXPECTED.TXT index 892cb6cae7..8d61918e37 100644 --- a/text-ui-test/EXPECTED.TXT +++ b/text-ui-test/EXPECTED.TXT @@ -1,9 +1,134 @@ -Hello from - ____ _ -| _ \ _ _| | _____ -| | | | | | | |/ / _ \ -| |_| | |_| | < __/ -|____/ \__,_|_|\_\___| - -What is your name? -Hello James Gosling +Failed Creating logs Directory +____________________________________________________________ +Save file not found! +It will be automatically created. + + &&&&&&&&&&&&&&&&&&&&&&&&& + &&&&&&&&&&&&&&&&&&&&&&&&&&&&& + &&&&& &&&&& + &&&&& &&&&&& + &&&&& &&&&&& &&&&& + &&&&&& &&&&&&&&&&&&&& &&&&&& + &&&&& &&&&& &&&& &&&&& + &&&&&& &&&& &&& &&&&& + &&&&& &&&& &&& &&&&& + &&&&& &&&&&&&&&&&&&&& &&&&& + &&&&& &&&& &&&&&&& &&&&& + &&&&& &&&& &&&&&& + &&&&& &&&& &&&&& + &&&&& &&&& &&&&&& + &&&&& &&&&& + &&&&& &&&&& + &&&&&&&&&&&&&&&&&&&&&&&&&&&&&& + &&&&&&&&&&&&&&&&&&&&&&&&&&& + +Welcome to PlanNUS! + For academic planner, type 'acadplan' or 'a' + For CAP calculator, type 'capcalc' or 'c' + To exit PlanNUS, type 'exit' or 'e' + +Type in a command to continue... +____________________________________________________________ +____________________________________________________________ +Welcome to Academic Planner! + +Available commands are: + add + edit + remove + details + search + capcalc + view + help + exit + +Type in an Academic Planner command to continue... +____________________________________________________________ +Semester you plan to take CS1010? + Valid semesters are integers from 1 to 10, inclusive +Grade received for CS1010? +Valid grades are: + Letter Grades: A+, A, A-, B+, B, B-, C+, C, D+, D, F + Special Grades: CS, CU, S, U, W, IC, IP, AUD, WU, EXE + If you have yet to have a grade for the module: NT +CS1010 added into Semester 2. +Data successfully saved! + +Type in an Academic Planner command to continue... +____________________________________________________________ +CS2101 Effective Communication for Computing Professionals + Department: Center for Engl Lang Comms + Faculty: Computing + Credits: 4MCs + Semesters offered: 1, 2 + Prerequisites: Students have to complete ES1000 and/or ES1103 (if required to take the module/s) before reading this module. + Corequisites: Students have to read CS2103T Software Engineering at the same time as this module. + Preclusions: CS2103 Software Engineering, IS2101 Business Technical Communication or its equivalent, ES2002, ES2007D, and ES1601. + +Type in an Academic Planner command to continue... +____________________________________________________________ +Note: Only up to the first 10 results are displayed. +Found 10 matching modules. +CG1111 +CG1112 +CG2023 +CG2027 +CG2028 +CG2271 +CG3002 +CG3207 +CG4001 +CG4002 + +Type in an Academic Planner command to continue... +____________________________________________________________ +____________________________________________________________ +Thank you for using Academic Planner! +____________________________________________________________ +Welcome back to PlanNUS Main Menu! + For academic planner, type 'acadplan' or 'a' + For CAP calculator, type 'capcalc' or 'c' + To exit PlanNUS, type 'exit' or 'e' + +Type in a command to continue... +____________________________________________________________ +____________________________________________________________ +Welcome to CAP Calculator! +Initializing your CAP... + +Available commands are: + current + set target + set su + acadplan + help + exit + +Type in an CAP Calculator command to continue... +____________________________________________________________ +Your current CAP is: 5 +Number of graded MCs taken is: 4 +Total number of MCs taken is: 4 + +Type in an CAP Calculator command to continue... +____________________________________________________________ +____________________________________________________________ +Thank you for using Cap Calculator! +____________________________________________________________ +Welcome back to PlanNUS Main Menu! + For academic planner, type 'acadplan' or 'a' + For CAP calculator, type 'capcalc' or 'c' + To exit PlanNUS, type 'exit' or 'e' + +Type in a command to continue... +____________________________________________________________ +OOPS!!! I'm sorry, but I don't know what that means :-( + +Type in a command to continue... +____________________________________________________________ +Data successfully saved! +____________________________________________________________ +Thanks for using PlanNUS! We hope to see you again! +____________________________________________________________ + diff --git a/text-ui-test/input.txt b/text-ui-test/input.txt index f6ec2e9f95..04db06527a 100644 --- a/text-ui-test/input.txt +++ b/text-ui-test/input.txt @@ -1 +1,12 @@ -James Gosling \ No newline at end of file +acadplan +add CS1010 +2 +A +details cs2101 +search cg +exit +capcalc +current +exit +hi +exit \ No newline at end of file