Boolean logic operator where all values in the argument must be true in order for the whole statement to be true. Often denoted with '&' ('&&' in programming languages).
If x=1 and y=0, then
(x AND y) = 0
76👍 65👎
Boolean logic operator where at least one argument in the expression must be true in order for the whole statement to be true. Often denoted with '+' ('||' in programming languages).
if x=1 and y=0, then
(x OR y) = 1
65👍 374👎
Melodic hardcore rock band from Charlotte, North Carolina. They have released 3 albums as of 2005: The Satellite Years, No Wings to Speak of, and A-Types.
I saw Hopesfall last night. They put on an awesome show.
18👍 35👎
Boolean logic operator that is equivalent to an AND function with all of its input values inverted. It has the following truth table:
X Y | Out
------------
0 0 | 1
0 1 | 0
1 0 | 0
1 1 | 1
x NOR y = (NOT x) AND (NOT y)
78👍 93👎
Boolean logic operator that inverts a given value. Often denoted with '~' ('!' in programming languages).
104👍 164👎
An unpopular but very talented indie/hardcore rock band from the San Francisco Bay area in CA. They have released dozens of records and EPs and their 2 biggest albums are "Difference of Potential" and "The Underdark". Most of their songs contain instrumentals and there is less singing (or screaming) than your average song on MTV. Funeral Diner are a thinking man's band.
"What's your favorite song?"
"'Lie in Headlights', by Funeral Diner."
31👍 42👎