├── 1. Algorithms and Design ├── *Notes for Exams.pdf ├── Code │ ├── Array - Shift Elements.py │ ├── Check_Digit.py │ ├── Check_String.py │ ├── Data Structures │ │ ├── Binary_Search_Tree_Array.py │ │ ├── Binary_Search_Tree_Dir.py │ │ ├── Binary_Search_Tree_Guide.py │ │ ├── Dictionary.py │ │ ├── Linked_List_Array.py │ │ ├── Linked_List_Dir.py │ │ ├── Queue_Circular_Array.py │ │ ├── Queue_Linear_Array.py │ │ ├── Queue_Linked.py │ │ ├── Stack_Array.py │ │ └── Stack_Linked.py │ ├── DirAccess.py │ ├── ExtractString.py │ ├── Searching │ │ ├── Binary_Search_Iterative.py │ │ ├── Binary_Search_Recursive.py │ │ ├── Hash_Table_Search_Chaining.py │ │ ├── Hash_Table_Search_Linear_Probing.py │ │ └── Sequential_Search.py │ ├── Sieve of Eratosthenes - Prime Num.py │ └── Sorting │ │ ├── BubbleSort.py │ │ ├── InsertionSort.py │ │ ├── QuickSort.py │ │ └── SelectionSort.py ├── Control Statements.pdf ├── Data Flow Diagrams.pdf ├── Data Representation.pdf ├── Data Structures (Abstraction).pdf ├── Data Types.pdf ├── Errors.pdf ├── Functions & Modules.pdf ├── Object Oriented Programming.pdf ├── Searching.pdf ├── Sorting.pdf ├── Useful Algorithms.pdf └── Variables.pdf ├── 2. Interface and Interactions ├── 2.1 Interacting with Computers.pdf ├── 2.2 Interfacing Computers (Networking).pdf └── 2.3 Interacting With Data (RDB).pdf ├── 3. Systems Engineering ├── 3.1 System Development Cycle.pdf ├── 3.2 Project Management Techniques.pdf ├── 3.3 Network Applications.pdf ├── Data Checking.pdf └── Data Flow Diagrams.pdf ├── 9597 H2 Computing Paper.pdf ├── LICENSE ├── README.md └── Relevant Materials ├── Notes For Professionals - Algorithms.pdf ├── Notes For Professionals - Python.pdf ├── Python Cheat Sheet Basic.py ├── Python Cheat Sheet Beginner.pdf ├── Python Combined.pdf └── Things to take note for Paper 1.docx /1. Algorithms and Design/*Notes for Exams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/*Notes for Exams.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Array - Shift Elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Array - Shift Elements.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Check_Digit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Check_Digit.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Check_String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Check_String.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Binary_Search_Tree_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Binary_Search_Tree_Array.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Binary_Search_Tree_Dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Binary_Search_Tree_Dir.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Binary_Search_Tree_Guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Binary_Search_Tree_Guide.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Dictionary.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Linked_List_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Linked_List_Array.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Linked_List_Dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Linked_List_Dir.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Queue_Circular_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Queue_Circular_Array.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Queue_Linear_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Queue_Linear_Array.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Queue_Linked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Queue_Linked.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Stack_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Stack_Array.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Data Structures/Stack_Linked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Data Structures/Stack_Linked.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/DirAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/DirAccess.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/ExtractString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/ExtractString.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Searching/Binary_Search_Iterative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Searching/Binary_Search_Iterative.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Searching/Binary_Search_Recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Searching/Binary_Search_Recursive.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Searching/Hash_Table_Search_Chaining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Searching/Hash_Table_Search_Chaining.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Searching/Hash_Table_Search_Linear_Probing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Searching/Hash_Table_Search_Linear_Probing.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Searching/Sequential_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Searching/Sequential_Search.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Sieve of Eratosthenes - Prime Num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Sieve of Eratosthenes - Prime Num.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Sorting/BubbleSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Sorting/BubbleSort.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Sorting/InsertionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Sorting/InsertionSort.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Sorting/QuickSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Sorting/QuickSort.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Code/Sorting/SelectionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Code/Sorting/SelectionSort.py -------------------------------------------------------------------------------- /1. Algorithms and Design/Control Statements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Control Statements.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Data Flow Diagrams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Data Flow Diagrams.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Data Representation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Data Representation.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Data Structures (Abstraction).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Data Structures (Abstraction).pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Data Types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Data Types.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Errors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Errors.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Functions & Modules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Functions & Modules.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Object Oriented Programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Object Oriented Programming.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Searching.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Searching.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Sorting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Sorting.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Useful Algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Useful Algorithms.pdf -------------------------------------------------------------------------------- /1. Algorithms and Design/Variables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/1. Algorithms and Design/Variables.pdf -------------------------------------------------------------------------------- /2. Interface and Interactions/2.1 Interacting with Computers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/2. Interface and Interactions/2.1 Interacting with Computers.pdf -------------------------------------------------------------------------------- /2. Interface and Interactions/2.2 Interfacing Computers (Networking).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/2. Interface and Interactions/2.2 Interfacing Computers (Networking).pdf -------------------------------------------------------------------------------- /2. Interface and Interactions/2.3 Interacting With Data (RDB).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/2. Interface and Interactions/2.3 Interacting With Data (RDB).pdf -------------------------------------------------------------------------------- /3. Systems Engineering/3.1 System Development Cycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/3. Systems Engineering/3.1 System Development Cycle.pdf -------------------------------------------------------------------------------- /3. Systems Engineering/3.2 Project Management Techniques.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/3. Systems Engineering/3.2 Project Management Techniques.pdf -------------------------------------------------------------------------------- /3. Systems Engineering/3.3 Network Applications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/3. Systems Engineering/3.3 Network Applications.pdf -------------------------------------------------------------------------------- /3. Systems Engineering/Data Checking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/3. Systems Engineering/Data Checking.pdf -------------------------------------------------------------------------------- /3. Systems Engineering/Data Flow Diagrams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/3. Systems Engineering/Data Flow Diagrams.pdf -------------------------------------------------------------------------------- /9597 H2 Computing Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/9597 H2 Computing Paper.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/README.md -------------------------------------------------------------------------------- /Relevant Materials/Notes For Professionals - Algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/Relevant Materials/Notes For Professionals - Algorithms.pdf -------------------------------------------------------------------------------- /Relevant Materials/Notes For Professionals - Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/Relevant Materials/Notes For Professionals - Python.pdf -------------------------------------------------------------------------------- /Relevant Materials/Python Cheat Sheet Basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/Relevant Materials/Python Cheat Sheet Basic.py -------------------------------------------------------------------------------- /Relevant Materials/Python Cheat Sheet Beginner.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/Relevant Materials/Python Cheat Sheet Beginner.pdf -------------------------------------------------------------------------------- /Relevant Materials/Python Combined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/Relevant Materials/Python Combined.pdf -------------------------------------------------------------------------------- /Relevant Materials/Things to take note for Paper 1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howtoosee/9597_H2_Computing/HEAD/Relevant Materials/Things to take note for Paper 1.docx --------------------------------------------------------------------------------