Ch_4_Making_Decisions Flashcards
1
Q
Relational Operators
A
Allows comparison of numeric and char values to determine greater than, less than, equal to, or not equal to.
All relational operators are binary operators with left to right associativity.
2
Q
Associativity
A
The order in which an operator works with its operands.
3
Q
Short Circuit
A
4
Q
Logical Operator
A
5
Q
Switch Statement
A
Uses the value of a expression to determine where the program will branch to.
Tests the value of an integer expression, and then uses that value to determine which set of statements to branch to.
6
Q
Associativity
A
The
7
Q
Conditional Operator
A
expression ? value if true : value if false
8
Q
A