Saved Bookmarks
| 1. |
Which of the following is not a Arithmetic Operator? +%&* |
Answer» & operator is not an arithmetic operatorExplanation: Arithmetic operators take numerical values (EITHER literals or variables) as their operands and RETURN a single numerical value. The basic arithmetic operations are ADDITION, subtraction, multiplication, and division. There are more arithmetic operators like exponentiation, MODULUS operations, increment, DECREMENT, etc. + - Addition operator % - Modulus operator & - And operator * - Multiplication operator. So, And operator is not an arithmetic operator. It is a logical operator. |
|