answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the operand of arithmetic operators?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What operators work differently when placed before rather than after an operand?

unary operators like ++,--


What are the different types of arithmetic operators?

+,-,*,/,% are the different types of operators.


What are binary operators?

Operators that act upon 2 operands are referred to as binary operators.These are distinguished as the left to right operand.


What are the operators in c tokens?

All arithmetic, logical operators are operators in c tokens. As: +, - , ++, --, %, &&, &, >>, << etc.


How many operators in mathematics?

There are a huge number of arithmetic, algebraic and trigonometric operators.


What are all of the valid excel arithmetic operators?

+ - * / ^ ()


Why associative property does not work in geometry?

It works for some operators in arithmetic as it does in geometry, and not with other operators.


What are valid Excel arithmetic operators?

The following are valid Excel operators for arithmetic: + (plus) - (minus) / (divide) * (multiply) ^ (power of) These can help you create operations, which would be your formulas that use the operators: =A2+A7 =10^2


How many types of operators?

The different types of operators are: Assignment operator- This is used to assign values to variables. Ex: = Arithmetic Operators - These are used to perform arithmetic operations. Ex: +, -, *, /, % Logical Operators - These are used to perform logical checks like: I < 10 or x == Y etc.


Binary and unary function in C plus plus?

A binary function would be one with two parameters, a unary, one with one parameter.However, these words are usually used for operators. For example, the common arithmetic operators, +, -, *, /, % are binary - they need two operands, for example, "2 + 3". The minus sign can also be unary; -x is the additive inverse of x. Unary means one operand is required. Boolean operators for and, or, xor, are binary. Actually, the great majority of operators are binary.


Can space be added before or after arithmetic operators?

Usually, yes.


What are urinary operators?

I suppose you wanted to ask about unary operators.Unary operators accept one operand, in oppose to binary operators, which accept two.Examples to unary operators are:f(x) = -xf(x)= abs(x)f(x) = sin(x)