Manuals/calci/BITNOT

Revision as of 05:04, 4 May 2017 by Swapna (talk | contribs) (Created page with "<div style="font-size:30px">'''BITNOT(n1)'''</div><br/> *where <math>n1</math> specifies the numeric value on which the bitwise NOT operation is performed. == Description =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
BITNOT(n1)


  • where specifies the numeric value on which the bitwise NOT operation is performed.


Description

  • BITNOT() returns the result of a bitwise NOT operation performed on a numeric value.
  •   specifies the numeric value. If   is not an integer, it is converted to an integer before its bits are shifted.
  • The numeric value returned by BITNOT( ) represents   with each bit of value 0 switched to 1 and each bit of value 1 switched to 0.

For Example,

BITNOT(1) = -2 (Bit Not value of 'binary value 01' is '10' i.e -2.)

BITNOT(False) = -1 (Bit Not value of 'binary value 00' is '11' i.e -1.)


Examples

  1. =BITNOT(TRUE) = -2
  2. =BITNOT(42) = -43
  3. =BITNOT((2+7)>8) = -2
  4. =BITNOT(0.5) = -1
  5. =BITNOT("d")= -1


Related Videos

NOT


See Also


References