Difference between revisions of "Binary operation"

 
(4 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
A '''binary operation''' is an [[operation]] which takes two arguments. Usually this takes an input and encodes it into machine code or binary. Then it returns a bit based on 2 bits, one from each string on their corresponding index. There are several binary operations that people tend to use a lot. Let's get to them:
 
A '''binary operation''' is an [[operation]] which takes two arguments. Usually this takes an input and encodes it into machine code or binary. Then it returns a bit based on 2 bits, one from each string on their corresponding index. There are several binary operations that people tend to use a lot. Let's get to them:
  
'''AND'''
+
'''AND'''                                                                                                                            
\begin{tabular}{cc|c}
+
 
<math>a</math> & <math>b</math> & expression \\
+
Detonated by the & or && symbol.
\hline
+
 
True & True & True \\
+
TRUE  & TRUE = TRUE
True & False & False \\
+
 
False & False & False \\
+
FALSE & TRUE  = FALSE
False & True & False \\
+
 
\end{tabular}
+
TRUE & FALSE  = FALSE
 +
 
 +
FALSE & FALSE = FALSE

Latest revision as of 19:39, 30 April 2024

This article is a stub. Help us out by expanding it.

A binary operation is an operation which takes two arguments. Usually this takes an input and encodes it into machine code or binary. Then it returns a bit based on 2 bits, one from each string on their corresponding index. There are several binary operations that people tend to use a lot. Let's get to them:

AND

Detonated by the & or && symbol.

TRUE & TRUE = TRUE

FALSE & TRUE = FALSE

TRUE & FALSE = FALSE

FALSE & FALSE = FALSE