what does .length or len() do
Returns the length of the string
How to convert the whole string to uppercase or lowercase
.upper() and .lower()
What is concatenation and how is it done
What does string[x:i] do
What do .left(x) or .right(x) do
Returns the leftmost or rightmost character from a string
The number in the brackets shows how many characters to return
String commands to convert between ASCII and characters
what is a record in a database
Type of data structure that stores all of the data relating to one entity in a database
What is a database and why is it used
How to recognise attributes and records in a database table
The 3 SQL commands in the order you have to use them
What does the wildcard * do in SQL
What does the wildcard % do in SQL
USED WITH LIKE
What are subprograms and the different types of subprograms
Advantages of subprograms
What is a global variable
Has a scope of the whole program. Is declared outside of a subprogram and in python, has to be declared before it is used in a subprogram
What is a local variable
A variable that is declared in a subprogram and its use is confined to that subprogram
What is an array
A static data structure that stores a number of related data items together in the same memory space (contiguous)
Why are arrays used?