answersLogoWhite

0


Best Answer

a b o/p

0 0 0

0 1 1

1 0 1

1 1 0

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an exclusive or XOR function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can you represent XOR function symbol in word?

xor


Why OR gate is an all gate?

XOR (Exclusive OR) gate is exclusively for either. OR allows 10, 01, 11. XOR allows 10 or 01, but not 11.


How can you devise a way to interchange two variables A and B without using a third variable or register using Exclusive OR?

A = A xor B B = A xor B A = A xor B in C... A^=B; B^=A; A^=B;


Why OR gate is an any-all gate?

XOR (Exclusive OR) gate is exclusively for either. OR allows 10, 01, 11. XOR allows 10 or 01, but not 11.


What circuit produces a high output when two inputs are unequal?

Not sure about the comparator. XOR is what I came up with, so we have two XORs. This is the "exclusive OR" logic function. Build one out of standard resistors and transistors, or buy an IC with the XOR function already implemented, or use four two-input NAND gates. At least that's the way we did it in the 1960s. In analog circuits, a comparator.


What are the Applications of XOR?

Exclusive OR gate has a variety of applications. Even parity generator. comparator. encoder etc.


How do you write the Boolean expression for XOR gate?

For 2-input EX-OR gate, if one input is A, the other input is B, and the output is Y. Then the Boolean expression for EX-OR (XOR) function (gate) is Y=A⊕B The output Y is true if either input A or if input B is true, but not both.Y= ( (A and NOT B) or (NOT A and B) ) ;


Operation of XOR gate?

An XOR (exclusive OR gate) has two inputs and one output. If only one of the inputs is at level 1, then the output is 1 otherwise the output is 0. The truth table looks like this: A B Out0 0 00 1 11 0 11 1 0 Exclusive OR represents in logic what "or" means in English; for example, if asked if you want tea or coffee it's usually meant that you can have one or the other - not both.


How do you use the XOR function in Excel?

There is no direct XOR function in Excel. XOR is what is known as an Exclusive OR. It is basically saying when something is one or the other, but not both. A normal OR accepts both as a valid option. As there is no direct XOR function in Excel, you have to use other functions to construct one. Assuming A1 and B1 have the values you want to test, then you can achieve an XOR by doing the following: OR(AND(A1,NOT(B1)),AND(NOT(A1),B1)) The combinations of values in A1 and B1 would be the first pair below. Then put the other combinations in the cells below A1 and B1 and copy the formula down to test the other combinations: TRUE TRUE FALSE TRUE TRUE FALSE FALSE FALSE A regular OR will accept the first combination, the second combination and the third combination. The above formula only accepts the second and third combinations, as they both have one TRUE, but not the other.


Is xor a even function?

XOR is odd functionfor more details uoy can visit :-faculty.kfupm.edu.sa/coe/aimane/coe202/XOR_XNOR.pdfANSWER: Exclusive OR gate will pass out a low or 0 when both input are zero 0 OR both inputs are HI 1. All other time is just hi 1.that is the logical premise or functionY =A(+) B = A not B + A Bnot


Any possible binary logic function can be implemented using only?

AND and NOT; OR and NOT; EQU and NOT; XOR


What is exclusive gate?

Probably you are referring to an Exlusive OR gate (XOR). This logic function (also implemented as an electronic circuit) outputs TRUE (or high) when one and only one of its two inputs is TRUE (or high). A regular OR gate outputs TRUE when either or both of its inputs are TRUE.