Coding the Micro:Bit Flashcards
The five development stages are…
- Analysis
- Design
- Implementation
- Testing
- Evaluation
What type of language do we write code in?
High-Level Language
What is the code that a user has written called?
Source code
What is the language understood by a computer?
Low-level language / Machine language
What is used to translate high-level languages to machine code?
Translators (could be an interpreter or a compiler)
What is the translated source code called?D
Executable code
Define sequence programming
Statements are run one after the other in the order they are written (in sequence)
Define conditional programming
Statements will run depending whether a condition is met or not
Define iterations or loops
Statements will run for a number of times
Define fixed loop
A loop that runs for a fixed number of times
Define conditional loop
A loop that runs while or until a condition is being met