Table of Contents

Graph

Computer Science Exam Prep (Monolithic Document)

Here is a monolithic document that contains all of my Computer Science notes, which I made in preparation for the Semester 1 Exam.

Some Good Links:

Computing Systems

For computing systems, there are 2 main categories that things can go into, these are:

From here you can go into more detail, and here is all the main course content that you need to know:

Hardware:

Software:

Databases

This will have all my notes for Databases

Databases Notes

SQL Examples

Teachers

TeacherID Teacher Name
4445 Mr Surrali
4433 Mr Wilson

Students

Student ID Student Name Gender DOB
67678 Jim Smith M 30/01/20
67677 Jane Jones F 20/1/20
67222 Lucy Kid F 8/03/20

Courses

CourseID Course Name
F451 Computer Fundamentals
F452 Programming and Logic

SQL Example Code (Find female student named Jane): SELECT StudentName, Gender FROM Flat_Databse WHERE Gender="F" AND Student Name = "Jane";

SQL Example Code (Find what subject teacherID 4445 teaches) SELECT Course_Name, Teacher_Name FROM Teachers, Course WHERE TeacherID = '4445'