unit 2 csp vocab Flashcards
flow pattern
a pattern showing the order in which individual statements or instructions are executed/evaluated.
sequential execution
each command in a program script executed in the order in which it is listed in the program
parameter
A parameter is a special kind of variable in computer programming language that is used to pass information between functions or procedures.
arguments
actual information passed in a function
procedure
the script that performs a task and is referenced within a larger body of source code (function or sun-routine)
comments
text note added to code to provide explanations
remix
a modified and shared version of an uploaded project
selection
a programming construct where a program of code is run only if a condition is met (if, else statements)
If statement
They let a program make decisions while it’s running. they tell the computer what to do with certain info.
If-else statement
Tells the computer that if the condition is true, do this. Else, if the condition is false, do another thing.
Nested conditional
an if-else statement inside another if else statement
operators
a character that represents a mathematical or logical action or process
control flow
the order in which the computer executes statements in a script
branching
the practice of creating copies of programs or objects in development to work in parallel versions (taking the original version and working on a part or making diff changes to each)
conditionals
a way for computers to make decisions based on conditions