Computer Science
…………… is logically equivalent to an inverted XOR gate.
- AND
- XNOR
- OR
- NOR
Boolean Algebra
3 Likes
Answer
XNOR
Reason — An XOR gate outputs true only when the inputs are different. The XNOR gate, being the inverse of the XOR gate, outputs true when the inputs are the same. This means that the XNOR gate behaves exactly like an XOR gate with its output inverted, making it logically equivalent to an inverted XOR gate.
Answered By
1 Like
Related Questions
Arithmetic Logic Unit and Control Unit of a computer together are known as …………… .
- Central Processing Unit
- Memory Unit
- I/O Unit
- Operating Unit
The smallest individual unit in a program is known as …………… .
- Digits
- Tokens
- Literals
- Units
Which of the following is an invalid data type in Python?
- Sets
- Real
- Integer
- None of these
What will be the output of the following code?
import math x = 100 print(x>0 and math.sqrt(x))
- True
- 1
- 10
- 10.0