With a selection structure, you perform an action or task, and then you perform the next action, in order.
No matter how complicated it is, any set of steps can always…
No matter how complicated it is, any set of steps can always be reduced to combinations of the two basic structures of sequence and loop.
You can use parentheses to override the default order of ope…
You can use parentheses to override the default order of operations.
____ a data item means you override incorrect data by settin…
____ a data item means you override incorrect data by setting the variable to a specific value.
Providing array values is sometimes called ____.
Providing array values is sometimes called ____.
Computer programmers often refer to memory addresses using _…
Computer programmers often refer to memory addresses using ____ notation.
An indefinite loop is a loop that never stops.
An indefinite loop is a loop that never stops.
If you declare a variable to be Boolean, you can set its val…
If you declare a variable to be Boolean, you can set its value to ____.
The following pseudocode is an example of a(n) ____ structur…
The following pseudocode is an example of a(n) ____ structure. if firstNumber is bigger than secondNumber then print firstNumber else print secondNumber
Most modern programming languages require that program state…
Most modern programming languages require that program statements be placed in specific columns.