This resource is designed as a quick reference or revision guide. It has not been endorsed by any exam boards. If you spot any mistakes, please let me know and I'll fix them asap.
This website aims to give a quick reference for VB.NET, Python and C# and pseudocode and is aimed primarily at teachers & students working towards a GCSE or A Level in Computer Science
VB.NET, Python and C# are programming languages designed to be understood and followed by computers. Pseudocode is not a programming language: it's written to be understood by humans so that they can turn it into any programming language.
Each skill has example code in Python, C#. You can also enable VB.NET and Pseudocode for OCR GCSE if you'd find that useful.
If you know what you're looking for, use the search bar above the categories list.
You can test if two expressions are the same using the equal to or not equal to operator.
An expression can be a variable or combination of variables & data (e.g. 1 + 1)
An operator is a symbol that means add, subtract or something similar.
This example asks the user to enter a temperature of a bath (in degrees Celsius) and then follows the following rules:
Equal to 37 degrees: says "Perfect - that's body temperature"
Not equal to 37 degrees: "Not body temperature"
Loading...