Completion Complete each
statement.
|
|
|
1.
|
The C++ ____________________ operator is used to initialize a variable to some
specific value.
|
|
|
2.
|
The C++ assignment operator assigns a variable to the
_____________________ of the operator to the value of an expression to the ____________________ of
the operator.
|
|
|
3.
|
The C++ ____________________ operator uses the asterisk as its symbol.
|
|
|
4.
|
The symbol used for the C++ modulus operator is the
____________________.
|
|
|
5.
|
The modulus operator can only be used for ____________________
division.
|
|
|
6.
|
Most computers will generate some sort of error if the ____________________
operand in a division statement is equal to zero.
|
|
|
7.
|
The C++ ____________________ operator is denoted by a double plus sign symbol
(++).
|
|
|
8.
|
The C++ ____________________ operator can be used to reduce a variable by a
value of one.
|
|
|
9.
|
If a variable named x has a value of 5, after executing the
statement: count = x++; the variable count will contain a value of
____________________.
|
|
|
10.
|
The _________________________ determines which portion of an expression is
evaluated before some other portion of the expression.
|