Edexcel GCSE Computer Science 2020

6.6.1: be able to write programs that use pre-existing (built-in, library) and user-devised subprograms (procedures, functions)

Keywords:
Programming
Test your self on these keywords and definitions using the games below or Play random game
KeywordDefinition
built-in subprograma type of pre-existing subprogram which you can use in python without having to import any modules or defining it yourself (e.g. input / print)
functiona type of subprogram which can have parameters by always returns a value
library subprograma type of pre-existing subprogram which you can use in python if you import a module (e.g. random or turtle)
pre-existing subprograma subprogram which you can use with python without having to define it yourself (e.g. built-in or library subprogram)
procedurea type of subprogram which can have parameters but never returns a value
subprogrameither a procedure or function (a named section of code that can be called multiple times)
user-devised subprograma type of subprogram which you have defined in your own python code using def
Keyword games:
Resources: