Unit 1 Vocab Flashcards
Algorithm
A set of instructions a computer will follow
Variables
information a user gives a computer to define something
Collaboration
to work jointly with others or together especially in an intellectual endeavor.
Driver
a set of files that tells a piece of hardware how to function by communicating with a computer’s operating system
Conditional
code that decides what part of an algorithm to run based on whether a condition is true or false.
Sprite
an image that represents something on a computer
Broadcast
when a sprite sends a message to another part of the program
Command
A specific action assigned to a program to perform a specific task
Event/Control
things that happen in the system you are programming, which the system tells you about so your code can react to them.
Input
Data or information the user gives the computer
Output
information that the computer gives to the user
Pseudocode
an informal and contrived way of writing programs in which you represent the sequence of actions and instructions (aka algorithms) in a form that humans can easily understand
Sequence
The order a computer runs a algorithm
Local Variable
a variable that only works within the sprite it is coded
Global Variable
a variable that works anywhere in the program