Activity 2 definitions Flashcards
to increase comprehension of computer science vocabulary to increase student achievement and success
navigation method used only when there is no data from sensors; path begin and end is fixed
dead reckoning
command used to trigger, start an event or procedure in a program
broadcasting
sequence of instructions that continually repeat until a condition is met
loop
using a procedure and only knowing what it does, not how it does it
procedural abstraction
each part is executed before moving to the next part; one line completes before the next begins
sequential
two processes occur at the same time
parallel
programming statement that evaluates a T/F expression to determine next steps in program; if-then, if-then-else are example statements
conditionals
one of two values
Boolean expression, data type
smallest unit of data a program can use; two types local and global
variables
set of steps to accomplish a task
algorithm
putting a function inside another function or loop inside another loop
nested loop
set a starting value
initialize
specific location by order for an element in a list; in Python the first is represented by a zero
index
collection of data values that do not have to be the same type; each item is called an element
list