| | An operator closely related to the if…else statement. Its operands are: a condition, the value for the entire conditional expression if the condition is true, and the value for the entire conditional expression if the condition is false. |
| |
| | Originally the focus of structured programming was to eliminate the use of the ____ statement, which allows programmers to transfer control to one of many possible destinations in a program. |
| |
| | Various C statements enable you to specify that the next statement to be executed may be other than the next one in the sequence. This is called transfer of _______. |
| |
| | Operator which increments the variable by 1, then uses the new value of the variable in the expression it is located in. (++var) |
| |
| | A procedure for solving a problem in terms of the actions to be executed and the order in which the actions are to be executed. |
| |
| | A graphical representation of an algorithm or of a portion of an algorithm; it is drawn with special-purpose symbols. |
| |
| | Operator which uses the current value of a variable in the expression it is located in, then decrements by 1. (var--) |
| |
| | Placing if…else statements inside if…else statements allows you to test for multiple cases and is called _______. |
| |
| | A ________ logic error allows a program to continue executing but produce incorrect results. |
| |
| | Specifying the order in which statements are to be executed in a computer program (2 words). |
| |
| | This type of statement is used to choose among alternative course of action. |
| |
| | A _____ logic error will cause a program to fail and terminate prematurely. |
| |
| | An artificial and informal language that helps you develop algorithms. |
| |
| | In flowcharts, the start and end are represented by this shape. |
| |
| | In flowcharts, the action symbol is represented by this shape. |
| |
| | The conditional operator is the only _______ operator in C. |
| |
| | In flowcharts, the diamond represents this type of symbol. |
| |
| | A set of statements contained within a pair of braces. |
| |
| | While and Do While loops are this type of structure. |
| |
| | An uninitialized variable contains a _______ value. |
| |
| | A value used to indicate the end of data entry. |
| |
| | Characters like spaces, tabs, and newlines. |
| |
| | Logic errors are caught during this time. |
| |
| | Catches syntax errors in a program. |
| |