Please enable JavaScript.
Coggle requires JavaScript to display documents.
Programming Techniques - Coggle Diagram
Programming Techniques
Subroutines
Procedures and functions
Functions return a value, procedures dont
-
-
Data structures
Arrays/lists
To access item we write the name of the list followed by [] with the index position of the item we want
A lists indexes from 0
-
-
2D arrays - scores[3][2] - if visualising as a table, give y coordinate first, x coordinate second
-
SQL
SELECT, FROM, WHERE
-
If we wanted to see all the firstnames beginning with S we would write SELECT FirstName from Student WHERE FirstName LIKE S%
-