+ 1
How exactly is an operand created?
_ var _
4 Respuestas
+ 2
operand refers to the object on which an operator acts
for example : 1 + 2
here, 1,2 are operands and '+' is operator which adds the two.
0
please explain more
0
I
I figured out the answer.
0
operands are allocated memory in the storage space called 'heap'. it is a temporary storage. After it is executed, this storage from heap is automatically removed by storage management system called garbage collector