answersLogoWhite

0


Best Answer

| x | y | x' | y' | x⊕y | x'⊕y' |

----------------------------------

| 0 | 0 | 1 | 1 | 0 | 0 |

| 0 | 1 | 1 | 0 | 1 | 1 |

| 1 | 0 | 0 | 1 | 1 | 1 |

| 1 | 1 | 0 | 0 | 0 | 0 |

User Avatar

Janelle Christiansen

Lvl 9
2y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How dual of xor is equal to its complement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

What angle is equal to 2 times its complement?

60 degrees.


Convert the gray code 10101111 to binary?

To convert Gray code to binary code you must be familiar with the logical XOR operator. XOR outputs a 1 bit if either of two input bits is 1, but not both. The truth table for XOR, for all possible inputs p and q, is as follows:p q output0 0 00 1 11 0 11 1 0The algorithm to convert from Gray code to binary code is as follows:Step 1: Fix the most-significant bit, the MSB, which is always the same for both codes. If there are no more bits, we're done, otherwise proceed to step 2.Step 2: XOR the most recently fixed binary bit with the next available Gray bit. Fix the result as the next binary bit.Step 3: If there is at least one more Gray bit available, go to step 2. Otherwise we're done.Therefore, to convert 10101111 from Gray to binary, we proceed as follows:Gray = 10101111Fix MSB = 11 XOR 0 = 11 XOR 1 = 00 XOR 0 = 00 XOR 1 = 11 XOR 1 = 00 XOR 1 = 11 XOR 1 = 1Thus: Binary = 11010101Note that we carry the fixed bit (the bold bit) onto the next line as the l-value (left operand) of XOR. The r-value (right operand) of XOR is always the next available Gray bit after the MSB. Reading the fixed bits from top to bottom reveals the binary code.We can also write this as follows:Gray = 10101111Binary = 1 XOR 0 = 1 XOR 1 = 0 XOR 0 = 0 XOR 1 = 1 XOR 1 = 0 XOR 1 = 1 XOR 1 = 1Reading the fixed (bold) bits left to right reveals the binary code.


What is the complement of an angle that measures 40 degrees?

A pair of complimentary angles has a sum that measures 90 degrees. If your first angle is 40 degrees, the complement must equal 50. 90= 40+X 50=X


What kind of complement is the word symbol?

objective complement


What is the complement of a 81 deegre?

Complement of 81º = 99º

Related questions

How dual of XOR gate is equal to its complement?

| x | y | x' | y' | x⊕y | x'⊕y' | ---------------------------------- | 0 | 0 | 1 | 1 | 0 | 0 | | 0 | 1 | 1 | 0 | 1 | 1 | | 1 | 0 | 0 | 1 | 1 | 1 | | 1 | 1 | 0 | 0 | 0 | 0 |


Are xor and xnor equal?

It depends. XNOR is the inverse of XOR. If the N(ot) part is on the inputs, then they are equivalent. If the N(ot) part is on the output, then they are not.


Is there an angle equal to its complement?

45o


If a is equal to b... then is not a equal to not b?

Yes. I'm assuming this is talking asking about boolean logic (the question makes little sense otherwise). If a and b are equal, then the complement of a and the complement of b are equal.


How do you make a nand gate using xor gate?

XORing X with 1 gives X', i.e., NOT(X). If we are able to construct a NAND (AND) using XOR, we can also obtain AND (NAND) from it, which makes XOR a universal gate since inverted inputs to a NAND (AND) will give OR (NOR). However XOR is not a universal gate! Therefore we cannot obtain NAND (AND) using XOR. :-) By, Tirtha Sarathi Ghosh Class 10 IIT Kanpur Aspirant


How can you represent XOR function symbol in word?

xor


Complement of a variable is always?

1


What is the measurement of an angle which is equal to its complement?

Half of 90...


How do you represent assignment by bitwise XOR operator?

The bitwise XOR operator is ^, or shift 6. The bitwise XOR assignment operator is ^=.


What is self complementary code?

If the one's complement of the code is equal to the nine's complement of the code, then it is called a self complementing code.


What angle is equal to 2 times its complement?

60 degrees.


What is XOR in a c program?

a XOR b is a^b in C language