A | B |
Code | Code is the name for the instructions you write to a computer in a program. |
Collisions | whenever 2 inputs map to the same output. |
Canvas | The screen in which our graphics programs are drawn. |
Call a Function | Calling a function actually gives the command, so the computer will run the code for that function. |
Bug | A bug is a problem in your code. |
Function | A function is like a command that you get to invent and name. It allows us to break our program into smaller parts, making the program easier to understand. |
Function Body | The part of a function that contains the commands |
Algorithm | An algorithm is a set of steps or rules to follow to solve a particular problem. |
Animation | Showing several still images one after another very quickly, to give the illusion of animated movement. |
Artificial Intelligence (AI) | the ability of a digital computer or computer-controlled robot to perform tasks commonly associated with intelligent beings |
ASCII | ASCII is the standard protocol for encoding text information as bits. The ASCII table assigns a unique binary number to every text character. |
Variable | A symbol or container that holds a value. |
Condition | A condition is code that you put inside an if statement or while-loop. |
Constant | A variable in a program that has a value that does not change. |
Concatenation | Concatenation is another word for combining. Concatenating Strings is when we add Strings together. |
Computer Science | The study of computational thinking, the thinking humans need to in order to describe a step by step process to a computer. |
Computing | Executing instructions, calculating, or using a computer. |
Control Structure | A control structure lets us change the flow of the code. |
Counter | A variable used to count the number of times an action has been performed |
Define a Function | Defining a function means to teach the computer a new command and explain what it should do when receiving that command. |