Following are not the arithmetic operator .

[amp_mcq option1=”mod” option2=”<=" option3="+" option4="/" correct="option2"]

The correct answer is B. <=.

The arithmetic operators are:

    • (addition)
    • (subtraction)
    • (multiplication)
  • / (division)
  • % (modulo)

The <= operator is a relational operator, not an arithmetic operator. It is used to compare two values and return true if the first value is less than or equal to the second value.

For example, the following expression is true:

5 <= 10

However, the following expression is false:

10 <= 5

I hope this helps! Let me know if you have any other questions.

Exit mobile version