top of page
Search
OOP and classes
Abstraction Abstraction is a process where you show only “relevant” data and “hide” unnecessary details of an object from the user. For...
Zack Scanlon
May 10, 20212 min read
1 view
0 comments

Comparison / Logic Operators
> Greater than (E.g An cars mass is greater than a mouse) < Less than (E.g A persons height is less than a building) >= Greater or...
Zack Scanlon
May 10, 20211 min read
0 views
0 comments
Data Structures
Data structures are ways of storing and organizing data within a computer so that you can perform actions with the stored data. Methods...
Zack Scanlon
May 10, 20212 min read
0 views
0 comments

Hexadecimal
When i was introduced to hexadecimal i recognised it as they way colours are displayed and navigated on things like colour wheels. Each...
Zack Scanlon
Feb 1, 20211 min read
1 view
0 comments

Compiling
Pre-processor Compiler Assembler Linker Pre-processor -It removes all the comments in your source file -includes the header file which is...
Zack Scanlon
Jan 25, 20211 min read
0 views
0 comments

Software development life cycle
Requirements and analysis Design Development Testing Deployment Maintenance R,D,I,T,D,M The software development cycle is the process...
Zack Scanlon
Jan 25, 20212 min read
2 views
0 comments


Binary
Binary is a numbering method that uses two values 0 and 1, true and false or in storage systems it low and high. In number systems the...
Zack Scanlon
Jan 25, 20211 min read
2 views
0 comments

Data types.
A data type is a set of values. In C# two main data types are value and reference types. Value types are created on the stack Structs We...
Zack Scanlon
Jan 18, 20211 min read
1 view
0 comments

Matrices
Matrices are used in most scientific fields but the most pertinent example is that they are used to manipulate 3D models and actually put...
Zack Scanlon
Jan 18, 20211 min read
3 views
0 comments

Vectors
Intro to vector and scalars. At first glance at vectors they looked intimidating to me but after watching the intro to Vector and Scalars...
Zack Scanlon
Jan 11, 20212 min read
3 views
0 comments

Radians
For radians we started by learning what a radian actually is, the description to radians that i was introduced to is that "The Radian...
Zack Scanlon
Dec 1, 20201 min read
0 views
0 comments

Arrays
Array: a group of liked type variables that are referred to by a common name. and each data item is called an element of the array. data...
Zack Scanlon
Nov 16, 20201 min read
0 views
0 comments

Trigonometry 02
starting with looking at trigonometric ratios soh cah toa is the way that you are able to find out the length of each sides when you only...
Zack Scanlon
Nov 16, 20201 min read
0 views
0 comments

Cisco networking academy: Part 2 Data types, variables, basic input-output operations.
Python functions are much more flexible and can hold more content than their mathematical equivalent. Cause some effect: send text to...
Zack Scanlon
Nov 15, 20202 min read
0 views
0 comments


Trigonometry
applications game design facial track e.g. Filters Music Elevation Construction Physics Criminology A ² + B ² =C ² Task 1 1.) A.) A=4cm...
Zack Scanlon
Nov 9, 20201 min read
0 views
0 comments

Coding in Unity using C#
The first thing i done in Unity was print hello world in the Unity console by using print("Hello world") To start making an adding object...
Zack Scanlon
Nov 2, 20201 min read
2 views
0 comments

Standard deviation
To find the standard division i added all the numbers in the data set together then divided by the number in the data set. After that i...
Zack Scanlon
Nov 2, 20201 min read
2 views
0 comments

C#
Syntax: WriteLine() will print the output into a new line where as Write() will just put it onto the same line If you don't use the using...
Zack Scanlon
Oct 14, 20203 min read
0 views
0 comments

Class chart
Making a class chart for Chuck Noris was pretty straight forward, I started by using Draw.io to actually create my class chart. I then...
Zack Scanlon
Oct 13, 20201 min read
0 views
0 comments


Pseudocode.
Pseudocode is a way for a programmer to visualize there code, this can be used for a variety of reasons like helping them to plan out an...
Zack Scanlon
Oct 13, 20201 min read
2 views
0 comments
bottom of page