Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
4 user(s) are online (3 user(s) are browsing encyclopedia)

Members: 0
Guests: 4

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

Operand

In mathematics, an operand is one of the inputs (arguments) of an Operator. For instance, in

:3 + 6 = 9

+ is the operator and 3 and 6 are the operands.

The number of operands of an operator is called its arity. Based on arity, operators are classified as unary operation, binary operation, ternary operation etc.


In computer programming languages, the definitions of operator (programming) and operand are almost the same as in mathematics.

Additionally, in assembly language, an operand is a value (an argument) on which the Instruction, named by mnemonic, operates. The operand may be a processor register, a memory address, a literal constant, or a label. A simple example (in the x86 architecture) is

:MOV   DS, AX

where the value in register operand AX is to be moved into register DS . Depending on the instruction, there may be zero, one, two, or more operands.