Question 90

Computer Awareness Boolean algebra Medium

If ( A, B ) and ( C ) are the inputs of a full adder, then the sum is given by

(A) A and B And C
(B) A Or B And C
(C) A XOR B XOR C
(D) A OR B OR C
View Dynamic Solution & Explanation
Correct Solution: Option C

Step-by-step Solution:

Full Adder – Sum Calculation
The sum output of a full adder with inputs $A$, $B$, and $C$ (carry-in) is calculated using the XOR (exclusive OR) operation.
$$ \text{Sum} = A \oplus B \oplus C $$ Where:
$A, B$ are the primary inputs
$C$ is the carry-in
$\oplus$ denotes the XOR operation
Correct Option: (c)