click below
click below
Normal Size Small Size show me how
1420-04
Introduction to Programming 04
| Question | Answer |
|---|---|
| Which structure is a logical design that controls the order in which a set of statements executes? | Control |
| Consider the following statement: A store is giving a discount of 30% for all purchases of over $100. Which of the following is not an appropriate structure to use to program the statement? | Sequence |
| The _______ symbol indicates that some condition must be tested in a flowchart. | Diamond |
| What type of operator can be used to determine whether a specific relationship exists between two values? | Relational |
| Which operator is used to determine that the operands are not exactly of the same value? | != |
| Typically, in conditions that require checking if something is equivalent, the ______ operator is used instead of the assignment operator _____. | ==, = |
| Which operator would make the following expression true? ____ false | NOT |
| Which operator would make the following expression false? True _____ False | AND |
| Which operator would make the following expression true? True _____ False | OR |
| Which operator would make the following expression true? "Jane" _____ "Jeff" (>, <, ==, !=) | < |