AND/ NOT
Started by: bxsciencerbxsciencer
On: 1257210742|%e %b %Y, %H:%M %Z|agohover
Number of posts: 5
rss icon RSS: New posts
AND/ NOT
bxsciencerbxsciencer 1257210742|%e %b %Y, %H:%M %Z|agohover

how are the 'and' and 'not' Boolean function used in real computer programs? do they work on bits comparison, objects, True/False? i know the logic tables, but how do the functions work with 32 bit numbers and stuff like that? when i do something like 25 and 30, i get 30

what does this mean?
(B AND C) OR ((NOT B) AND D)


Visit Calccrypto for info on crypto

last edited on 1257210763|%e %b %Y, %H:%M %Z|agohover by bxsciencer + show more
unfold AND/ NOT by bxsciencerbxsciencer, 1257210742|%e %b %Y, %H:%M %Z|agohover
Re: AND/ NOT
graphmasturgraphmastur 1257218127|%e %b %Y, %H:%M %Z|agohover

What language is this?


"But sanctify the Lord God in your hearts, and always be ready to give a defense to everyone who asks you a reason for the hope that is in you, with meekness and fear;" ~ 1 Peter 3:16

unfold Re: AND/ NOT by graphmasturgraphmastur, 1257218127|%e %b %Y, %H:%M %Z|agohover
Re: AND/ NOT
bxsciencerbxsciencer 1257219289|%e %b %Y, %H:%M %Z|agohover

python


Visit Calccrypto for info on crypto

unfold Re: AND/ NOT by bxsciencerbxsciencer, 1257219289|%e %b %Y, %H:%M %Z|agohover
Re: AND/ NOT
builderboybuilderboy 1257224258|%e %b %Y, %H:%M %Z|agohover

I would guess it does a Binary operation. any number can be represented as a sequence of 1's and 0's. If you have two numbers

10010101
00101101

you can AND/OR/XOR the individual bits together.

unfold Re: AND/ NOT by builderboybuilderboy, 1257224258|%e %b %Y, %H:%M %Z|agohover
Re: AND/ NOT
bxsciencerbxsciencer 1257258798|%e %b %Y, %H:%M %Z|agohover

okay


Visit Calccrypto for info on crypto

unfold Re: AND/ NOT by bxsciencerbxsciencer, 1257258798|%e %b %Y, %H:%M %Z|agohover
New post