Is a set of instructions you follow in a certain order to complete a task.
Back
APIs
Front
Stands for APPLICATION PROGRAMMING INTERFACE. They are a way for one application to share information with another application.
Back
Sequence
Front
the order that commands are executed by a computer, allows us to carry out tasks that have multiple steps. In programming, sequence is a basic algorithm: A set of logical steps carried out in order.
Back
Output
Front
The results of the operation of any system.
Back
Variable
Front
It is specific information you want the computer to remember. It's like a container you use to store information.
Back
Pseudocode
Front
Uses normal everyday writing to spell out exactly what you will be coding as very precise instructions.
Back
Event
Front
In computing, an event is an action or occurrence detected by the computer code. Events can be user actions, such as clicking a mouse button or pressing a key.
Back
Libraries
Front
Store useful algorithms and pieces of code for other people to use
Back
Functions
Front
Are little bunches of code that do specific jobs in a larger program. You can create them for lots of reasons, but a big one is to help you avoid having to write the same code over and over again.
Back
Loop
Front
In computer programming, a loop is a sequence of instructions that is continually repeated until a certain condition is reached.
Back
Input
Front
Data that is entered into the computer system via an input or storage device.
Back
Conditionals
Front
Are used when you need to use the computer to decide something. Usually set with an "if" statement.
If__________, then__________.
Back
Computer code
Front
or program code is the set of instructions forming a computer program which is executed by a computer.