1/54
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Short Text Data Type
A data type used to store short pieces of text such as names or addresses.
Validation Rule
A check made by the computer to ensure inputted data is sensible and within limits.
Paper-Based Disadvantage
Takes up a lot of space, is slow to search through, and can be easily lost or damaged.
Computer-Based Advantage
Easy to organise and look through data, allows fast searching, and improves security.
Computer-Based Disadvantage
Expensive, needs electricity/computer, likely needs training and can have technical issues.
Binary
A base 2 number system, containing only 0 and 1
Variable
A named container that stores data which can change.
!=
This is the not equal to operator. It checks if two values are not equal to each other.
>=
Checks if a value is greater than or equal to another
<=
Checks if a value is less than or equal to another
free point (delete later)
k
//
Floor division, divides and round down to the nearest whole number
%
Divide the first number by the second number, round the result down to the nearest whole number, multiply that by the second number, then subtract that from the first number. The result is the remainder, which is what the modulus operator (%) gives.
if / elif / else
Used for selection in Python.if runs code when a condition is true.elif tests another condition if the previous if was false.else runs code if none of the conditions are true.