click below
click below
Normal Size Small Size show me how
AC 2.1-2.3
Question | Answer |
---|---|
redundancy, redundant | Duplicated or replicated code within a program. |
loop | A set of instructions that is repeated until a condition is met. |
while loop | A type of loop that tests a condition and repeatedly executes code while, or as long as, the condition is true. |
parameter | A value provided as input to a code block or a predefined procedure. |
header (of a code block) | The first line of a code block that embodies other blocks. The top line of text for an event handler block, or an if-else block, or a for loop. |
local variable | A variable that is only accessible inside a block of code or a procedure. |
iteration (through loops) | The execution of one pass of a loop. |
iterative (design) | Repeating process steps to continuously improve a work product. |
list | An ordered collection of data elements stored and accessed in a program. |
dynamic list | A list whose items can change during the runtime of a program. |
model layer | The layer of an app that contains the data entered and used in the app. |