Sequence Structure - Answers a set of statements that execute in the order that they appear
Loops - Answers The computational concept of running the same sequence multiple times.
Selection structure - Answers the control structure that directs the computer to make a decision and
then take the appropriate action based on that decision; also called the decision structure
Nesting structures - Answers the act of placing a structure within another structure
Stacking structures - Answers the act of attaching structures end to end
Block Programming - Answers When a programmer strings together a group of similar programs.
End-structure statements - Answers designate the ends of pseudocode structures.
Single-alternative - Answers A ________ decision structure provides only one alternative path of
execution.
While loop (While...Do) - Answers statements that continue to execute while a condition remains true.
(Farrell, 2013)
Unstructured programs - Answers Programs that use spaghetti code logic are unstructured programs;
that is, they do not follow the rules of structured logic.
Structure - Answers A basic unit of programming logic; each structure is a sequence, selection, or loop.
Assignment operator - Answers An equal sign
Assisgnement Statements - Answers A statement in which any operation performed to the right of the
equal sign results in a value that is placed in the memory location to the left of the equal sign.
Camel casing - Answers A variable naming convection in which the first letter of a variable name is lower
case and any words that followed in the variable name begin with an upper case letter, making the
name easier to read.
Compiler/ Interpreter - Answers Language translation software that converts a programmer's
statements to binary form.
Data - Answers Through hardware devices, data, or facts, enter the computer system
Declare the variable - Answers Provide the program with a data type and an identifier.
Identifier - Answers A variable name is also called an _____________
Information - Answers After data items have been processed, they become _________________.