Which operator is used to string together several expressions?
Comma
Size of
Modulus
Conditional
Which expression is a combination of constants, variables and logical and relational operators?
Logical
Arithmetic
Relational
Integer
Which part of an expression determines the expression type?
Constants
Variables
Operators
Operation
What do you mean by the explicit conversion of an operand to a specific type?
Type promotion
Type compatibility
Type conversion
Type casting
Which operator reverses the sign of the operand's value?
Unary +
Unary-
subtraction
Which of the following is a shorthand operator in C++?
+
*=
==
>=
What do you mean by the combination of operators, constants and variables?
Expression
Data
Program
Which binary operator is used for finding the remainder of the operands?
*
/
%
Which C++ operator determines the relation among different operands?
Increment/Decrement
Which C++ operator has the same precedence as prefix increment/decrement operator?
Postfix increment/decrement
Ternary