Quiz 3
Decision structures and selection structures are completely different.
False
The OR operator will evaluate to True only if both subexpressions are also True.
False
The first line of a case structure starts with the word CASE, followed by the test expression.
False
The short-circuit evaluation is always performed with all expressions that contain any logical operators.
False
A decision structure will produce unpredictable results if the programmer does not use proper indentation in the pseudocode.
False
An If-Then-Else statement must be used to write a single alternative decision structure.
False
In an expression with an OR operator, it does not matter which subexpression is True for the compound expression to be True.
True
In many languages the == operator determines whether one variable has the same value as another variable.
True
A nested decision structure can achieve the same logic as a case structure.
True
A nested decision structure can be used to test more than one condition.
True