Which of the following is not a Arithmetic Operator? +
%
&
*
Answers
& operator is not an arithmetic operator
Explanation:
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.
Explanation:
Among the four options given in question statement, the correct option is third one i.e & operator is not an arithmetic operator.
& operator is basically used a logical operator and is used to perform the AND operation while the remaining operators are all arithmetic operators
+ is simple addition, % is modulus and * is the multiplication operator