
The given logic diagram shows four AND gates whose outputs are ORed to produce the final sum \( S \). Each AND gate is enabled by one of the signals \( D_0, D_1, D_2, D_3 \). The gates are arranged such that each AND implements one minterm of the XOR truth table.
The sum bit for adding two bits is \( S = X \oplus Y \). The truth table for XOR is:
| X | Y | S |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
Thus, only minterms \( m_1 \) and \( m_2 \) must be active.
Comparing with the given options, the correct configuration is:
\( D_0 = 1, D_1 = 0, D_2 = 0, D_3 = 1 \) which matches option (A).




